blob: c84daf90f93a43f8c235986e22b4e4477d687b37 [file] [log] [blame]
jacquelinecchuang617fd262024-04-19 03:11:14 +08001###############################################################################
2# BRLTTY - A background process providing access to the console screen (when in
3# text mode) for a blind person using a refreshable braille display.
4#
5# Copyright (C) 1995-2023 by The BRLTTY Developers.
6#
7# BRLTTY comes with ABSOLUTELY NO WARRANTY.
8#
9# This is free software, placed under the terms of the
10# GNU Lesser General Public License, as published by the Free Software
11# Foundation; either version 2.1 of the License, or (at your option) any
12# later version. Please see the file LICENSE-LGPL for details.
13#
14# Web Page: http://brltty.app/
15#
16# This software is maintained by Dave Mielke <dave@mielke.cc>.
17###############################################################################
18
19# This BRLTTY text subtable implements a common scheme for representing the 10
20# Hindu-Arabic numerals in braille. The digit 0 is represented by dots 346, and
21# the digits 1-9 are represented by the letters a-i with dot 6 added.
22
23char \x30 ( 34 6 ) # ⠬ 0 [DIGIT ZERO]
24char \x31 (1 6 ) # ⠡ 1 [DIGIT ONE]
25char \x32 (12 6 ) # ⠣ 2 [DIGIT TWO]
26char \x33 (1 4 6 ) # ⠩ 3 [DIGIT THREE]
27char \x34 (1 456 ) # ⠹ 4 [DIGIT FOUR]
28char \x35 (1 56 ) # ⠱ 5 [DIGIT FIVE]
29char \x36 (12 4 6 ) # ⠫ 6 [DIGIT SIX]
30char \x37 (12 456 ) # ⠻ 7 [DIGIT SEVEN]
31char \x38 (12 56 ) # ⠳ 8 [DIGIT EIGHT]
32char \x39 ( 2 4 6 ) # ⠪ 9 [DIGIT NINE]
33
34include num-alias.tti