Unicode Finder

"ប" U+1794(KHMER LETTER BA)

U+1794
Nazwa Bloku
Khmer
Nazwa
KHMER LETTER BA

Programming

C
\u1794
JavaScript
\u1794
Java
\u1794
Json
\u1794
Python
\u1794
Perl
\x{1794}
PHP
\x{1794}
Ruby
\u{1794}
Rust
\u{1794}
Go
\u1794

Web

CSS
\001794
HtmlDecimal
ប
HtmlHexadecimal
ប
Url
%E1%9E%94

Code

MD5
fd66c2608ce7c96bfe119dc2e6542898
Sha1
90a27a3446036b2af09d4c8670c58a4d2752f646
Base64
4Z6U

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1794';
console.log(char);  // Output: ប

Java:

char c = '\u1794';
System.out.println(c);  // Output: ប

JSON:

{"text": "\u1794"}  // Value: ប

Python:

char = '\u1794'
print(char)  # Output: ប

Perl:

my $char = "\x{1794}";
print $char;  # Output: ប

PHP:

$char = "\x{1794}";
echo $char;  // Output: ប

Ruby:

char = "\u{1794}"
puts char  # Output: ប

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001794";  /* Display: ប */
}

HTML Decimal:

<p>HTML decimal: &#6036;</p>  <!-- Display: ប -->

HTML Hexadecimal:

<p>HTML hex: &#x1794;</p>  <!-- Display: ប -->

URL Encoding:

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

Encodings

MD5:

fd66c2608ce7c96bfe119dc2e6542898

SHA1:

90a27a3446036b2af09d4c8670c58a4d2752f646

Base64:

4Z6U