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