C:
char c = '\uABE6';
printf("%c\n", c); // Output: ꯦ
JavaScript:
const char = '\uABE6';
console.log(char); // Output: ꯦ
Java:
char c = '\uABE6';
System.out.println(c); // Output: ꯦ
JSON:
{"text": "\uABE6"} // Value: ꯦ
Python:
char = '\uABE6'
print(char) # Output: ꯦ
Perl:
my $char = "\x{ABE6}";
print $char; # Output: ꯦ
PHP:
$char = "\x{ABE6}";
echo $char; // Output: ꯦ
Ruby:
char = "\u{ABE6}"
puts char # Output: ꯦ
Rust:
let c = '\u{ABE6}';
println!("{}", c); // Output: ꯦ
Go:
char := '\uABE6'
fmt.Printf("%c\n", char) // Output: ꯦ
CSS:
/* CSS content property */
.element::before {
content: "\00ABE6"; /* 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%AF%A6
MD5:
a62dbe6e55c6da142f70e6f67ef8235c
SHA1:
308bba75240c2ccf83989e6c2d53edfbecaf65ef
Base64:
6q+m