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