Unicode Finder

"ꓕ" U+A4D5(LISU LETTER THA)

U+A4D5
ブロック名
Lisu
名前
LISU LETTER THA

Programming

C
\uA4D5
JavaScript
\uA4D5
Java
\uA4D5
Json
\uA4D5
Python
\uA4D5
Perl
\x{A4D5}
PHP
\x{A4D5}
Ruby
\u{A4D5}
Rust
\u{A4D5}
Go
\uA4D5

Web

CSS
\00A4D5
HtmlDecimal
ꓕ
HtmlHexadecimal
ꓕ
Url
%EA%93%95

Code

MD5
c8c35a398dfc0ac78f11bf779759ee63
Sha1
855d576e6a8895a9fc1932b1fda01ceb3b53e771
Base64
6pOV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uA4D5';
console.log(char);  // Output: ꓕ

Java:

char c = '\uA4D5';
System.out.println(c);  // Output: ꓕ

JSON:

{"text": "\uA4D5"}  // Value: ꓕ

Python:

char = '\uA4D5'
print(char)  # Output: ꓕ

Perl:

my $char = "\x{A4D5}";
print $char;  # Output: ꓕ

PHP:

$char = "\x{A4D5}";
echo $char;  // Output: ꓕ

Ruby:

char = "\u{A4D5}"
puts char  # Output: ꓕ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#42197;</p>  <!-- Display: ꓕ -->

HTML Hexadecimal:

<p>HTML hex: &#xA4D5;</p>  <!-- Display: ꓕ -->

URL Encoding:

// ꓕ URL encoding
https://unicodefinder.com/search.php?query=%EA%93%95

Encodings

MD5:

c8c35a398dfc0ac78f11bf779759ee63

SHA1:

855d576e6a8895a9fc1932b1fda01ceb3b53e771

Base64:

6pOV