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