C:
char c = '\u1400';
printf("%c\n", c); // Output: ᐀
JavaScript:
const char = '\u1400';
console.log(char); // Output: ᐀
Java:
char c = '\u1400';
System.out.println(c); // Output: ᐀
JSON:
{"text": "\u1400"} // Value: ᐀
Python:
char = '\u1400'
print(char) # Output: ᐀
Perl:
my $char = "\x{1400}";
print $char; # Output: ᐀
PHP:
$char = "\x{1400}";
echo $char; // Output: ᐀
Ruby:
char = "\u{1400}"
puts char # Output: ᐀
Rust:
let c = '\u{1400}';
println!("{}", c); // Output: ᐀
Go:
char := '\u1400'
fmt.Printf("%c\n", char) // Output: ᐀
CSS:
/* CSS content property */
.element::before {
content: "\001400"; /* 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%80
MD5:
2d6654cced9fb004b430ff16bb271cda
SHA1:
f10307491e3541bc8361b828b6e184ff7d91f4b3
Base64:
4ZCA