Unicode Finder

"ោ" U+17C4(KHMER VOWEL SIGN OO)

U+17C4
Nazwa Bloku
Khmer
Nazwa
KHMER VOWEL SIGN OO

Programming

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

Web

CSS
\0017C4
HtmlDecimal
ោ
HtmlHexadecimal
ោ
Url
%E1%9F%84

Code

MD5
e0adaa54b317bdef4334820c0b77e499
Sha1
d5460a7fde900d4fd61b50bc1c11c7f4f652e5c4
Base64
4Z+E

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u17C4';
console.log(char);  // Output: ោ

Java:

char c = '\u17C4';
System.out.println(c);  // Output: ោ

JSON:

{"text": "\u17C4"}  // Value: ោ

Python:

char = '\u17C4'
print(char)  # Output: ោ

Perl:

my $char = "\x{17C4}";
print $char;  # Output: ោ

PHP:

$char = "\x{17C4}";
echo $char;  // Output: ោ

Ruby:

char = "\u{17C4}"
puts char  # Output: ោ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#6084;</p>  <!-- Display: ោ -->

HTML Hexadecimal:

<p>HTML hex: &#x17C4;</p>  <!-- Display: ោ -->

URL Encoding:

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

Encodings

MD5:

e0adaa54b317bdef4334820c0b77e499

SHA1:

d5460a7fde900d4fd61b50bc1c11c7f4f652e5c4

Base64:

4Z+E