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