C:
char c = '\uA400';
printf("%c\n", c); // Output: ꐀ
JavaScript:
const char = '\uA400';
console.log(char); // Output: ꐀ
Java:
char c = '\uA400';
System.out.println(c); // Output: ꐀ
JSON:
{"text": "\uA400"} // Value: ꐀ
Python:
char = '\uA400'
print(char) # Output: ꐀ
Perl:
my $char = "\x{A400}";
print $char; # Output: ꐀ
PHP:
$char = "\x{A400}";
echo $char; // Output: ꐀ
Ruby:
char = "\u{A400}"
puts char # Output: ꐀ
Rust:
let c = '\u{A400}';
println!("{}", c); // Output: ꐀ
Go:
char := '\uA400'
fmt.Printf("%c\n", char) // Output: ꐀ
CSS:
/* CSS content property */
.element::before {
content: "\00A400"; /* 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=%EA%90%80
MD5:
f362eb6e51474c0f99229c3030dd04f3
SHA1:
6291cc66b3241f8a06d9e78b64074747be5c19aa
Base64:
6pCA