Unicode Finder

"េ" U+17C1(KHMER VOWEL SIGN E)

U+17C1
Nazwa Bloku
Khmer
Nazwa
KHMER VOWEL SIGN E

Programming

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

Web

CSS
\0017C1
HtmlDecimal
េ
HtmlHexadecimal
េ
Url
%E1%9F%81

Code

MD5
19bef4416217d1e1c3c09cdc4288567e
Sha1
b46079fec091f91594c944bc42b1243a73c6e9e7
Base64
4Z+B

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u17C1';
console.log(char);  // Output: េ

Java:

char c = '\u17C1';
System.out.println(c);  // Output: េ

JSON:

{"text": "\u17C1"}  // Value: េ

Python:

char = '\u17C1'
print(char)  # Output: េ

Perl:

my $char = "\x{17C1}";
print $char;  # Output: េ

PHP:

$char = "\x{17C1}";
echo $char;  // Output: េ

Ruby:

char = "\u{17C1}"
puts char  # Output: េ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6081;</p>  <!-- Display: េ -->

HTML Hexadecimal:

<p>HTML hex: &#x17C1;</p>  <!-- Display: េ -->

URL Encoding:

// េ URL encoding
https://unicodefinder.com/search.php?query=%E1%9F%81

Encodings

MD5:

19bef4416217d1e1c3c09cdc4288567e

SHA1:

b46079fec091f91594c944bc42b1243a73c6e9e7

Base64:

4Z+B