Unicode Finder

"ឡ" U+17A1(KHMER LETTER LA)

U+17A1
Nazwa Bloku
Khmer
Nazwa
KHMER LETTER LA

Programming

C
\u17A1
JavaScript
\u17A1
Java
\u17A1
Json
\u17A1
Python
\u17A1
Perl
\x{17A1}
PHP
\x{17A1}
Ruby
\u{17A1}
Rust
\u{17A1}
Go
\u17A1

Web

CSS
\0017A1
HtmlDecimal
ឡ
HtmlHexadecimal
ឡ
Url
%E1%9E%A1

Code

MD5
33c1a2f1fcbde4e2ce8da3f9294c1917
Sha1
a2e65cbc001aeee10c827582c811101e8e533f19
Base64
4Z6h

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u17A1';
console.log(char);  // Output: ឡ

Java:

char c = '\u17A1';
System.out.println(c);  // Output: ឡ

JSON:

{"text": "\u17A1"}  // Value: ឡ

Python:

char = '\u17A1'
print(char)  # Output: ឡ

Perl:

my $char = "\x{17A1}";
print $char;  # Output: ឡ

PHP:

$char = "\x{17A1}";
echo $char;  // Output: ឡ

Ruby:

char = "\u{17A1}"
puts char  # Output: ឡ

Rust:

let c = '\u{17A1}';
println!("{}", c);  // Output: ឡ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0017A1";  /* Display: ឡ */
}

HTML Decimal:

<p>HTML decimal: &#6049;</p>  <!-- Display: ឡ -->

HTML Hexadecimal:

<p>HTML hex: &#x17A1;</p>  <!-- Display: ឡ -->

URL Encoding:

// ឡ URL encoding
https://unicodefinder.com/search.php?query=%E1%9E%A1

Encodings

MD5:

33c1a2f1fcbde4e2ce8da3f9294c1917

SHA1:

a2e65cbc001aeee10c827582c811101e8e533f19

Base64:

4Z6h