C:
char c = '\u1ABE';
printf("%c\n", c); // Output: ᪾
JavaScript:
const char = '\u1ABE';
console.log(char); // Output: ᪾
Java:
char c = '\u1ABE';
System.out.println(c); // Output: ᪾
JSON:
{"text": "\u1ABE"} // Value: ᪾
Python:
char = '\u1ABE'
print(char) # Output: ᪾
Perl:
my $char = "\x{1ABE}";
print $char; # Output: ᪾
PHP:
$char = "\x{1ABE}";
echo $char; // Output: ᪾
Ruby:
char = "\u{1ABE}"
puts char # Output: ᪾
Rust:
let c = '\u{1ABE}';
println!("{}", c); // Output: ᪾
Go:
char := '\u1ABE'
fmt.Printf("%c\n", char) // Output: ᪾
CSS:
/* CSS content property */
.element::before {
content: "\001ABE"; /* 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=%E1%AA%BE
MD5:
06274bdeabd4c90d18899b6d0d81bcb2
SHA1:
ceaaa4615fa0ecfdad7813ce92dd82c767e6177c
Base64:
4aq+