Unicode Finder

"ឬ" U+17AC(KHMER INDEPENDENT VOWEL RYY)

U+17AC
Nome del Blocco
Khmer
Nome
KHMER INDEPENDENT VOWEL RYY

Programming

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

Web

CSS
\0017AC
HtmlDecimal
ឬ
HtmlHexadecimal
ឬ
Url
%E1%9E%AC

Code

MD5
ba2ad2533686cde308cec40c6e550364
Sha1
5bc1bd9e9f2ebb6ef580283fe8665d8b612407c1
Base64
4Z6s

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u17AC';
console.log(char);  // Output: ឬ

Java:

char c = '\u17AC';
System.out.println(c);  // Output: ឬ

JSON:

{"text": "\u17AC"}  // Value: ឬ

Python:

char = '\u17AC'
print(char)  # Output: ឬ

Perl:

my $char = "\x{17AC}";
print $char;  # Output: ឬ

PHP:

$char = "\x{17AC}";
echo $char;  // Output: ឬ

Ruby:

char = "\u{17AC}"
puts char  # Output: ឬ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6060;</p>  <!-- Display: ឬ -->

HTML Hexadecimal:

<p>HTML hex: &#x17AC;</p>  <!-- Display: ឬ -->

URL Encoding:

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

Encodings

MD5:

ba2ad2533686cde308cec40c6e550364

SHA1:

5bc1bd9e9f2ebb6ef580283fe8665d8b612407c1

Base64:

4Z6s