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