C:
char c = '\u1499';
printf("%c\n", c); // Output: ᒙ
JavaScript:
const char = '\u1499';
console.log(char); // Output: ᒙ
Java:
char c = '\u1499';
System.out.println(c); // Output: ᒙ
JSON:
{"text": "\u1499"} // Value: ᒙ
Python:
char = '\u1499'
print(char) # Output: ᒙ
Perl:
my $char = "\x{1499}";
print $char; # Output: ᒙ
PHP:
$char = "\x{1499}";
echo $char; // Output: ᒙ
Ruby:
char = "\u{1499}"
puts char # Output: ᒙ
Rust:
let c = '\u{1499}';
println!("{}", c); // Output: ᒙ
Go:
char := '\u1499'
fmt.Printf("%c\n", char) // Output: ᒙ
CSS:
/* CSS content property */
.element::before {
content: "\001499"; /* 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%92%99
MD5:
5838ed5e0a3f5a14a7f5f1a608f0ae73
SHA1:
005a2f9ed3c7353f024b6d5e78cd11ebbec31b3c
Base64:
4ZKZ