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