| 記号名 | Thai Baht |
| Unicodeバージョン | 1.1 |
| Unicode | U+0E3F |
| Unicodeブロック | |
| 一般カテゴリ | Currency Symbol (Sc) |
| CSSコード | \0E3F |
| 16進コード | 0x0E3F |
| HTMLコード | ฿ |
| LaTeX | \textbaht |
| 記号 | ฿ |
| URLエンコード(UTF-8パーセント) | %E0%B8%BF |
| 読み上げ名 / スクリーンリーダー | Thai Baht |
| UTF-8 | E0 B8 BF |
| UTF-16 | 0E3F |
| UTF-32 | 00000E3F |
1\documentclass{article}2\usepackage{pifont}3\textbaht4\end{document}以下の方法でほとんどの最新デバイスでthai baht記号を入力できます:
Alt + 3647 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "baht", or enable Unicode Hex Input.
Ctrl + Shift + U, type 0e3f, then Enter (layout-dependent).
Paste from this page or use the symbol picker.
Paste from this page or select from extended symbol panels.
1span.baht::before { content: "\0E3F"; }1<span>฿</span>各プログラミング言語におけるThai Baht記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u0E3F' or String.fromCodePoint(0x0E3F) |
| Python | '\N{THAI CURRENCY SYMBOL BAHT}' or chr(3647) |
| Rust | '\u{0E3F}' |
| C / C++ | UTF-8 source or wchar_t with U+0E3F |
| Go | string(rune(0x0E3F)) |
| Ruby | "\u0E3F" |