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