Unicode Finder

"ផ" U+1795(KHMER LETTER PHA)

U+1795
Nazwa Bloku
Khmer
Nazwa
KHMER LETTER PHA

Programming

C
\u1795
JavaScript
\u1795
Java
\u1795
Json
\u1795
Python
\u1795
Perl
\x{1795}
PHP
\x{1795}
Ruby
\u{1795}
Rust
\u{1795}
Go
\u1795

Web

CSS
\001795
HtmlDecimal
ផ
HtmlHexadecimal
ផ
Url
%E1%9E%95

Code

MD5
b97f7ceac2ddfff7894266e60ea2ed29
Sha1
1a85c2dca99af825f70a9de1103b3e0c4d0b215c
Base64
4Z6V

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1795';
console.log(char);  // Output: ផ

Java:

char c = '\u1795';
System.out.println(c);  // Output: ផ

JSON:

{"text": "\u1795"}  // Value: ផ

Python:

char = '\u1795'
print(char)  # Output: ផ

Perl:

my $char = "\x{1795}";
print $char;  # Output: ផ

PHP:

$char = "\x{1795}";
echo $char;  // Output: ផ

Ruby:

char = "\u{1795}"
puts char  # Output: ផ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001795";  /* Display: ផ */
}

HTML Decimal:

<p>HTML decimal: &#6037;</p>  <!-- Display: ផ -->

HTML Hexadecimal:

<p>HTML hex: &#x1795;</p>  <!-- Display: ផ -->

URL Encoding:

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

Encodings

MD5:

b97f7ceac2ddfff7894266e60ea2ed29

SHA1:

1a85c2dca99af825f70a9de1103b3e0c4d0b215c

Base64:

4Z6V