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