Unicode Finder

"ម" U+1798(KHMER LETTER MO)

U+1798
Nazwa Bloku
Khmer
Nazwa
KHMER LETTER MO

Programming

C
\u1798
JavaScript
\u1798
Java
\u1798
Json
\u1798
Python
\u1798
Perl
\x{1798}
PHP
\x{1798}
Ruby
\u{1798}
Rust
\u{1798}
Go
\u1798

Web

CSS
\001798
HtmlDecimal
ម
HtmlHexadecimal
ម
Url
%E1%9E%98

Code

MD5
b8b5f0249ce6ff6902122c0000e93241
Sha1
d04322c9d75aea5fd9a2b07506d54bde25031a96
Base64
4Z6Y

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1798';
console.log(char);  // Output: ម

Java:

char c = '\u1798';
System.out.println(c);  // Output: ម

JSON:

{"text": "\u1798"}  // Value: ម

Python:

char = '\u1798'
print(char)  # Output: ម

Perl:

my $char = "\x{1798}";
print $char;  # Output: ម

PHP:

$char = "\x{1798}";
echo $char;  // Output: ម

Ruby:

char = "\u{1798}"
puts char  # Output: ម

Rust:

let c = '\u{1798}';
println!("{}", c);  // Output: ម

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001798";  /* Display: ម */
}

HTML Decimal:

<p>HTML decimal: &#6040;</p>  <!-- Display: ម -->

HTML Hexadecimal:

<p>HTML hex: &#x1798;</p>  <!-- Display: ម -->

URL Encoding:

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

Encodings

MD5:

b8b5f0249ce6ff6902122c0000e93241

SHA1:

d04322c9d75aea5fd9a2b07506d54bde25031a96

Base64:

4Z6Y