Unicode Finder

"ꎹ" U+A3B9(YI SYLLABLE SHEP)

U+A3B9
ブロック名
Yi Syllables
名前
YI SYLLABLE SHEP

Programming

C
\uA3B9
JavaScript
\uA3B9
Java
\uA3B9
Json
\uA3B9
Python
\uA3B9
Perl
\x{A3B9}
PHP
\x{A3B9}
Ruby
\u{A3B9}
Rust
\u{A3B9}
Go
\uA3B9

Web

CSS
\00A3B9
HtmlDecimal
ꎹ
HtmlHexadecimal
ꎹ
Url
%EA%8E%B9

Code

MD5
4416c2d2f23544e2973331bc9f03b648
Sha1
b880ec6d3aa58808e8935b09729d5c02f9e011b0
Base64
6o65

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA3B9';
console.log(char);  // Output: ꎹ

Java:

char c = '\uA3B9';
System.out.println(c);  // Output: ꎹ

JSON:

{"text": "\uA3B9"}  // Value: ꎹ

Python:

char = '\uA3B9'
print(char)  # Output: ꎹ

Perl:

my $char = "\x{A3B9}";
print $char;  # Output: ꎹ

PHP:

$char = "\x{A3B9}";
echo $char;  // Output: ꎹ

Ruby:

char = "\u{A3B9}"
puts char  # Output: ꎹ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#41913;</p>  <!-- Display: ꎹ -->

HTML Hexadecimal:

<p>HTML hex: &#xA3B9;</p>  <!-- Display: ꎹ -->

URL Encoding:

// ꎹ URL encoding
https://unicodefinder.com/search.php?query=%EA%8E%B9

Encodings

MD5:

4416c2d2f23544e2973331bc9f03b648

SHA1:

b880ec6d3aa58808e8935b09729d5c02f9e011b0

Base64:

6o65