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