C:
char c = '\u1416';
printf("%c\n", c); // Output: ᐖ
JavaScript:
const char = '\u1416';
console.log(char); // Output: ᐖ
Java:
char c = '\u1416';
System.out.println(c); // Output: ᐖ
JSON:
{"text": "\u1416"} // Value: ᐖ
Python:
char = '\u1416'
print(char) # Output: ᐖ
Perl:
my $char = "\x{1416}";
print $char; # Output: ᐖ
PHP:
$char = "\x{1416}";
echo $char; // Output: ᐖ
Ruby:
char = "\u{1416}"
puts char # Output: ᐖ
Rust:
let c = '\u{1416}';
println!("{}", c); // Output: ᐖ
Go:
char := '\u1416'
fmt.Printf("%c\n", char) // Output: ᐖ
CSS:
/* CSS content property */
.element::before {
content: "\001416"; /* 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%96
MD5:
17003ed45a3aa299a9a854babefc25ab
SHA1:
251c87bdd6dacb5ccb1b23f6c68405e10eae03fd
Base64:
4ZCW