C:
char c = '\u1058';
printf("%c\n", c); // Output: ၘ
JavaScript:
const char = '\u1058';
console.log(char); // Output: ၘ
Java:
char c = '\u1058';
System.out.println(c); // Output: ၘ
JSON:
{"text": "\u1058"} // Value: ၘ
Python:
char = '\u1058'
print(char) # Output: ၘ
Perl:
my $char = "\x{1058}";
print $char; # Output: ၘ
PHP:
$char = "\x{1058}";
echo $char; // Output: ၘ
Ruby:
char = "\u{1058}"
puts char # Output: ၘ
Rust:
let c = '\u{1058}';
println!("{}", c); // Output: ၘ
Go:
char := '\u1058'
fmt.Printf("%c\n", char) // Output: ၘ
CSS:
/* CSS content property */
.element::before {
content: "\001058"; /* 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%98
MD5:
fbf9ea1cd61f67a47afe08885a6e67f9
SHA1:
a57b734dc8fcc4b32e36c6bdc3610dc8adde7c5f
Base64:
4YGY