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