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