Unicode Finder

"ក" U+1780(KHMER LETTER KA)

U+1780
Nazwa Bloku
Khmer
Nazwa
KHMER LETTER KA

Programming

C
\u1780
JavaScript
\u1780
Java
\u1780
Json
\u1780
Python
\u1780
Perl
\x{1780}
PHP
\x{1780}
Ruby
\u{1780}
Rust
\u{1780}
Go
\u1780

Web

CSS
\001780
HtmlDecimal
ក
HtmlHexadecimal
ក
Url
%E1%9E%80

Code

MD5
5e044c31b35c6fcb9d00626bd191be0d
Sha1
ddfe604b4ec70dd98b611252286cf1049a957d60
Base64
4Z6A

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1780';
console.log(char);  // Output: ក

Java:

char c = '\u1780';
System.out.println(c);  // Output: ក

JSON:

{"text": "\u1780"}  // Value: ក

Python:

char = '\u1780'
print(char)  # Output: ក

Perl:

my $char = "\x{1780}";
print $char;  # Output: ក

PHP:

$char = "\x{1780}";
echo $char;  // Output: ក

Ruby:

char = "\u{1780}"
puts char  # Output: ក

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001780";  /* Display: ក */
}

HTML Decimal:

<p>HTML decimal: &#6016;</p>  <!-- Display: ក -->

HTML Hexadecimal:

<p>HTML hex: &#x1780;</p>  <!-- Display: ក -->

URL Encoding:

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

Encodings

MD5:

5e044c31b35c6fcb9d00626bd191be0d

SHA1:

ddfe604b4ec70dd98b611252286cf1049a957d60

Base64:

4Z6A