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