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