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