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