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