Unicode Finder

"ᥒ" U+1952(TAI LE LETTER NGA)

U+1952
ブロック名
Tai Le
名前
TAI LE LETTER NGA

Programming

C
\u1952
JavaScript
\u1952
Java
\u1952
Json
\u1952
Python
\u1952
Perl
\x{1952}
PHP
\x{1952}
Ruby
\u{1952}
Rust
\u{1952}
Go
\u1952

Web

CSS
\001952
HtmlDecimal
ᥒ
HtmlHexadecimal
ᥒ
Url
%E1%A5%92

Code

MD5
90e2d19a2ea94a557bc43040e33416b8
Sha1
a069b206d754284d28ff3b1a740426ad114985cc
Base64
4aWS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1952';
console.log(char);  // Output: ᥒ

Java:

char c = '\u1952';
System.out.println(c);  // Output: ᥒ

JSON:

{"text": "\u1952"}  // Value: ᥒ

Python:

char = '\u1952'
print(char)  # Output: ᥒ

Perl:

my $char = "\x{1952}";
print $char;  # Output: ᥒ

PHP:

$char = "\x{1952}";
echo $char;  // Output: ᥒ

Ruby:

char = "\u{1952}"
puts char  # Output: ᥒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001952";  /* Display: ᥒ */
}

HTML Decimal:

<p>HTML decimal: &#6482;</p>  <!-- Display: ᥒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1952;</p>  <!-- Display: ᥒ -->

URL Encoding:

// ᥒ URL encoding
https://unicodefinder.com/search.php?query=%E1%A5%92

Encodings

MD5:

90e2d19a2ea94a557bc43040e33416b8

SHA1:

a069b206d754284d28ff3b1a740426ad114985cc

Base64:

4aWS