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