Unicode Finder

"៳" U+17F3(KHMER SYMBOL LEK ATTAK BEI)

U+17F3
Název Bloku
Khmer
Název
KHMER SYMBOL LEK ATTAK BEI

Programming

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

Web

CSS
\0017F3
HtmlDecimal
៳
HtmlHexadecimal
៳
Url
%E1%9F%B3

Code

MD5
3d9c4aa46ed17e76d373c0f3d3cde5d1
Sha1
4b56faf71e4a410873e5110e75e21847e28267f2
Base64
4Z+z

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u17F3';
console.log(char);  // Output: ៳

Java:

char c = '\u17F3';
System.out.println(c);  // Output: ៳

JSON:

{"text": "\u17F3"}  // Value: ៳

Python:

char = '\u17F3'
print(char)  # Output: ៳

Perl:

my $char = "\x{17F3}";
print $char;  # Output: ៳

PHP:

$char = "\x{17F3}";
echo $char;  // Output: ៳

Ruby:

char = "\u{17F3}"
puts char  # Output: ៳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6131;</p>  <!-- Display: ៳ -->

HTML Hexadecimal:

<p>HTML hex: &#x17F3;</p>  <!-- Display: ៳ -->

URL Encoding:

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

Encodings

MD5:

3d9c4aa46ed17e76d373c0f3d3cde5d1

SHA1:

4b56faf71e4a410873e5110e75e21847e28267f2

Base64:

4Z+z