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