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