/usr/share/doc/dialog/examples/inputbox6-utf8 is in dialog 1.2-20140911-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/sh
# $Id: inputbox6-utf8,v 1.9 2013/09/24 00:06:02 tom Exp $
. ./setup-vars
. ./setup-tempfile
. ./setup-utf8
TITLE="あいうえお"
$DIALOG \
--title "$TITLE" "$@" \
--inputbox "$TITLE" 10 20 "D.O.G" 2>$tempfile
retval=$?
. ./report-tempfile
|