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