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