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