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