C:
char c = '\u1419';
printf("%c\n", c); // Output: ᐙ
JavaScript:
const char = '\u1419';
console.log(char); // Output: ᐙ
Java:
char c = '\u1419';
System.out.println(c); // Output: ᐙ
JSON:
{"text": "\u1419"} // Value: ᐙ
Python:
char = '\u1419'
print(char) # Output: ᐙ
Perl:
my $char = "\x{1419}";
print $char; # Output: ᐙ
PHP:
$char = "\x{1419}";
echo $char; // Output: ᐙ
Ruby:
char = "\u{1419}"
puts char # Output: ᐙ
Rust:
let c = '\u{1419}';
println!("{}", c); // Output: ᐙ
Go:
char := '\u1419'
fmt.Printf("%c\n", char) // Output: ᐙ
CSS:
/* CSS content property */
.element::before {
content: "\001419"; /* 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%99
MD5:
e332d1a08ff8046aeb7dae1f7386fa77
SHA1:
3c4825072ea5d89ab2ff09c0d637398c2b4da6f5
Base64:
4ZCZ