Unicode Finder

"ꏂ" U+A3C2(YI SYLLABLE SHY)

U+A3C2
ブロック名
Yi Syllables
名前
YI SYLLABLE SHY

Programming

C
\uA3C2
JavaScript
\uA3C2
Java
\uA3C2
Json
\uA3C2
Python
\uA3C2
Perl
\x{A3C2}
PHP
\x{A3C2}
Ruby
\u{A3C2}
Rust
\u{A3C2}
Go
\uA3C2

Web

CSS
\00A3C2
HtmlDecimal
ꏂ
HtmlHexadecimal
ꏂ
Url
%EA%8F%82

Code

MD5
189745ee389404bf2986d1c5e1c65e9f
Sha1
b98c4d65a5a65ee86e0d6ef896043908d615eea0
Base64
6o+C

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA3C2';
console.log(char);  // Output: ꏂ

Java:

char c = '\uA3C2';
System.out.println(c);  // Output: ꏂ

JSON:

{"text": "\uA3C2"}  // Value: ꏂ

Python:

char = '\uA3C2'
print(char)  # Output: ꏂ

Perl:

my $char = "\x{A3C2}";
print $char;  # Output: ꏂ

PHP:

$char = "\x{A3C2}";
echo $char;  // Output: ꏂ

Ruby:

char = "\u{A3C2}"
puts char  # Output: ꏂ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00A3C2";  /* Display: ꏂ */
}

HTML Decimal:

<p>HTML decimal: &#41922;</p>  <!-- Display: ꏂ -->

HTML Hexadecimal:

<p>HTML hex: &#xA3C2;</p>  <!-- Display: ꏂ -->

URL Encoding:

// ꏂ URL encoding
https://unicodefinder.com/search.php?query=%EA%8F%82

Encodings

MD5:

189745ee389404bf2986d1c5e1c65e9f

SHA1:

b98c4d65a5a65ee86e0d6ef896043908d615eea0

Base64:

6o+C