C:
char c = '\u1050';
printf("%c\n", c); // Output: ၐ
JavaScript:
const char = '\u1050';
console.log(char); // Output: ၐ
Java:
char c = '\u1050';
System.out.println(c); // Output: ၐ
JSON:
{"text": "\u1050"} // Value: ၐ
Python:
char = '\u1050'
print(char) # Output: ၐ
Perl:
my $char = "\x{1050}";
print $char; # Output: ၐ
PHP:
$char = "\x{1050}";
echo $char; // Output: ၐ
Ruby:
char = "\u{1050}"
puts char # Output: ၐ
Rust:
let c = '\u{1050}';
println!("{}", c); // Output: ၐ
Go:
char := '\u1050'
fmt.Printf("%c\n", char) // Output: ၐ
CSS:
/* CSS content property */
.element::before {
content: "\001050"; /* 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%81%90
MD5:
6ac45c7609f01689d9365c0566337556
SHA1:
efe64b13e2a816a155ba02fee2b1bf69e52c9611
Base64:
4YGQ