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: ផ
CSS:
/* CSS content property */
.element::before {
content: "\001795"; /* Display: ផ */
}
HTML Decimal:
<p>HTML decimal: ផ</p> <!-- Display: ផ -->
HTML Hexadecimal:
<p>HTML hex: ផ</p> <!-- Display: ផ -->
URL Encoding:
// ផ URL encoding
https://unicodefinder.com/search.php?query=%E1%9E%95
MD5:
b97f7ceac2ddfff7894266e60ea2ed29
SHA1:
1a85c2dca99af825f70a9de1103b3e0c4d0b215c
Base64:
4Z6V