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