Unicode Finder

"ៃ" U+17C3(KHMER VOWEL SIGN AI)

U+17C3
Nazwa Bloku
Khmer
Nazwa
KHMER VOWEL SIGN AI

Programming

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

Web

CSS
\0017C3
HtmlDecimal
ៃ
HtmlHexadecimal
ៃ
Url
%E1%9F%83

Code

MD5
caf943a2843f6a52862fa91e5190c3ea
Sha1
c0a3f13b588249997e1d53e48c5f19832fee8007
Base64
4Z+D

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u17C3';
console.log(char);  // Output: ៃ

Java:

char c = '\u17C3';
System.out.println(c);  // Output: ៃ

JSON:

{"text": "\u17C3"}  // Value: ៃ

Python:

char = '\u17C3'
print(char)  # Output: ៃ

Perl:

my $char = "\x{17C3}";
print $char;  # Output: ៃ

PHP:

$char = "\x{17C3}";
echo $char;  // Output: ៃ

Ruby:

char = "\u{17C3}"
puts char  # Output: ៃ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6083;</p>  <!-- Display: ៃ -->

HTML Hexadecimal:

<p>HTML hex: &#x17C3;</p>  <!-- Display: ៃ -->

URL Encoding:

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

Encodings

MD5:

caf943a2843f6a52862fa91e5190c3ea

SHA1:

c0a3f13b588249997e1d53e48c5f19832fee8007

Base64:

4Z+D