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