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