Unicode Finder

"៦" U+17E6(KHMER DIGIT SIX)

U+17E6
Nama Blok
Khmer
Nama
KHMER DIGIT SIX

Programming

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

Web

CSS
\0017E6
HtmlDecimal
៦
HtmlHexadecimal
៦
Url
%E1%9F%A6

Code

MD5
3508c6be9c98b11e735fb8e39f71527c
Sha1
f32955b689464576519deb9c6a835c2665ee68d5
Base64
4Z+m

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u17E6';
console.log(char);  // Output: ៦

Java:

char c = '\u17E6';
System.out.println(c);  // Output: ៦

JSON:

{"text": "\u17E6"}  // Value: ៦

Python:

char = '\u17E6'
print(char)  # Output: ៦

Perl:

my $char = "\x{17E6}";
print $char;  # Output: ៦

PHP:

$char = "\x{17E6}";
echo $char;  // Output: ៦

Ruby:

char = "\u{17E6}"
puts char  # Output: ៦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6118;</p>  <!-- Display: ៦ -->

HTML Hexadecimal:

<p>HTML hex: &#x17E6;</p>  <!-- Display: ៦ -->

URL Encoding:

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

Encodings

MD5:

3508c6be9c98b11e735fb8e39f71527c

SHA1:

f32955b689464576519deb9c6a835c2665ee68d5

Base64:

4Z+m