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