C:
char c = '\u0F51';
printf("%c\n", c); // Output: ད
JavaScript:
const char = '\u0F51';
console.log(char); // Output: ད
Java:
char c = '\u0F51';
System.out.println(c); // Output: ད
JSON:
{"text": "\u0F51"} // Value: ད
Python:
char = '\u0F51'
print(char) # Output: ད
Perl:
my $char = "\x{0F51}";
print $char; # Output: ད
PHP:
$char = "\x{0F51}";
echo $char; // Output: ད
Ruby:
char = "\u{0F51}"
puts char # Output: ད
Rust:
let c = '\u{F51}';
println!("{}", c); // Output: ད
Go:
char := '\u0F51'
fmt.Printf("%c\n", char) // Output: ད
CSS:
/* CSS content property */
.element::before {
content: "\000F51"; /* 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=%E0%BD%91
MD5:
8a924e9954f69ab7947c81725e5db06a
SHA1:
7fa4afc39c9d7df0e07914f97969e0dba8e4f080
Base64:
4L2R