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