Unicode Finder

"ꍜ" U+A35C(YI SYLLABLE ZHYX)

U+A35C
ブロック名
Yi Syllables
名前
YI SYLLABLE ZHYX

Programming

C
\uA35C
JavaScript
\uA35C
Java
\uA35C
Json
\uA35C
Python
\uA35C
Perl
\x{A35C}
PHP
\x{A35C}
Ruby
\u{A35C}
Rust
\u{A35C}
Go
\uA35C

Web

CSS
\00A35C
HtmlDecimal
ꍜ
HtmlHexadecimal
ꍜ
Url
%EA%8D%9C

Code

MD5
4f38b4064989ff644826903fb4746fe1
Sha1
3ad6e9454f60868c746d235295100cd5f03947d0
Base64
6o2c

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA35C';
console.log(char);  // Output: ꍜ

Java:

char c = '\uA35C';
System.out.println(c);  // Output: ꍜ

JSON:

{"text": "\uA35C"}  // Value: ꍜ

Python:

char = '\uA35C'
print(char)  # Output: ꍜ

Perl:

my $char = "\x{A35C}";
print $char;  # Output: ꍜ

PHP:

$char = "\x{A35C}";
echo $char;  // Output: ꍜ

Ruby:

char = "\u{A35C}"
puts char  # Output: ꍜ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#41820;</p>  <!-- Display: ꍜ -->

HTML Hexadecimal:

<p>HTML hex: &#xA35C;</p>  <!-- Display: ꍜ -->

URL Encoding:

// ꍜ URL encoding
https://unicodefinder.com/search.php?query=%EA%8D%9C

Encodings

MD5:

4f38b4064989ff644826903fb4746fe1

SHA1:

3ad6e9454f60868c746d235295100cd5f03947d0

Base64:

6o2c