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