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