Unicode Finder

"ᝲ" U+1772(TAGBANWA VOWEL SIGN I)

U+1772
ブロック名
Tagbanwa
名前
TAGBANWA VOWEL SIGN I

Programming

C
\u1772
JavaScript
\u1772
Java
\u1772
Json
\u1772
Python
\u1772
Perl
\x{1772}
PHP
\x{1772}
Ruby
\u{1772}
Rust
\u{1772}
Go
\u1772

Web

CSS
\001772
HtmlDecimal
ᝲ
HtmlHexadecimal
ᝲ
Url
%E1%9D%B2

Code

MD5
aee476a24e06a0a2c27617ca82c86560
Sha1
8327699fd9015277ebbc7925f79e21995aab7113
Base64
4Z2y

使用例

Programming Languages

C:

char c = '\u1772';
printf("%c\n", c);  // Output: ᝲ

JavaScript:

const char = '\u1772';
console.log(char);  // Output: ᝲ

Java:

char c = '\u1772';
System.out.println(c);  // Output: ᝲ

JSON:

{"text": "\u1772"}  // Value: ᝲ

Python:

char = '\u1772'
print(char)  # Output: ᝲ

Perl:

my $char = "\x{1772}";
print $char;  # Output: ᝲ

PHP:

$char = "\x{1772}";
echo $char;  // Output: ᝲ

Ruby:

char = "\u{1772}"
puts char  # Output: ᝲ

Rust:

let c = '\u{1772}';
println!("{}", c);  // Output: ᝲ

Go:

char := '\u1772'
fmt.Printf("%c\n", char)  // Output: ᝲ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001772";  /* Display: ᝲ */
}

HTML Decimal:

<p>HTML decimal: &#6002;</p>  <!-- Display: ᝲ -->

HTML Hexadecimal:

<p>HTML hex: &#x1772;</p>  <!-- Display: ᝲ -->

URL Encoding:

// ᝲ URL encoding
https://unicodefinder.com/search.php?query=%E1%9D%B2

Encodings

MD5:

aee476a24e06a0a2c27617ca82c86560

SHA1:

8327699fd9015277ebbc7925f79e21995aab7113

Base64:

4Z2y