Unicode Finder

"ꋑ" U+A2D1(YI SYLLABLE ZZIX)

U+A2D1
區塊名稱
Yi Syllables
名稱
YI SYLLABLE ZZIX

Programming

C
\uA2D1
JavaScript
\uA2D1
Java
\uA2D1
Json
\uA2D1
Python
\uA2D1
Perl
\x{A2D1}
PHP
\x{A2D1}
Ruby
\u{A2D1}
Rust
\u{A2D1}
Go
\uA2D1

Web

CSS
\00A2D1
HtmlDecimal
ꋑ
HtmlHexadecimal
ꋑ
Url
%EA%8B%91

Code

MD5
0f974ebc7ed42bd8025d1b539c6e3f2f
Sha1
ada5d3b5c3183a05737a4802c1fbb59f972f942f
Base64
6ouR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\uA2D1';
console.log(char);  // Output: ꋑ

Java:

char c = '\uA2D1';
System.out.println(c);  // Output: ꋑ

JSON:

{"text": "\uA2D1"}  // Value: ꋑ

Python:

char = '\uA2D1'
print(char)  # Output: ꋑ

Perl:

my $char = "\x{A2D1}";
print $char;  # Output: ꋑ

PHP:

$char = "\x{A2D1}";
echo $char;  // Output: ꋑ

Ruby:

char = "\u{A2D1}"
puts char  # Output: ꋑ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#41681;</p>  <!-- Display: ꋑ -->

HTML Hexadecimal:

<p>HTML hex: &#xA2D1;</p>  <!-- Display: ꋑ -->

URL Encoding:

// ꋑ URL encoding
https://unicodefinder.com/search.php?query=%EA%8B%91

Encodings

MD5:

0f974ebc7ed42bd8025d1b539c6e3f2f

SHA1:

ada5d3b5c3183a05737a4802c1fbb59f972f942f

Base64:

6ouR