C:
char c = '\u1492';
printf("%c\n", c); // Output: ᒒ
JavaScript:
const char = '\u1492';
console.log(char); // Output: ᒒ
Java:
char c = '\u1492';
System.out.println(c); // Output: ᒒ
JSON:
{"text": "\u1492"} // Value: ᒒ
Python:
char = '\u1492'
print(char) # Output: ᒒ
Perl:
my $char = "\x{1492}";
print $char; # Output: ᒒ
PHP:
$char = "\x{1492}";
echo $char; // Output: ᒒ
Ruby:
char = "\u{1492}"
puts char # Output: ᒒ
Rust:
let c = '\u{1492}';
println!("{}", c); // Output: ᒒ
Go:
char := '\u1492'
fmt.Printf("%c\n", char) // Output: ᒒ
CSS:
/* CSS content property */
.element::before {
content: "\001492"; /* 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%92
MD5:
61ad27acbeefe548d1c39b69480c1e8e
SHA1:
998e4edf79a4918b91dac0b2c99d86233b770957
Base64:
4ZKS