C:
char c = '\u2ABE';
printf("%c\n", c); // Output: ⪾
JavaScript:
const char = '\u2ABE';
console.log(char); // Output: ⪾
Java:
char c = '\u2ABE';
System.out.println(c); // Output: ⪾
JSON:
{"text": "\u2ABE"} // Value: ⪾
Python:
char = '\u2ABE'
print(char) # Output: ⪾
Perl:
my $char = "\x{2ABE}";
print $char; # Output: ⪾
PHP:
$char = "\x{2ABE}";
echo $char; // Output: ⪾
Ruby:
char = "\u{2ABE}"
puts char # Output: ⪾
Rust:
let c = '\u{2ABE}';
println!("{}", c); // Output: ⪾
Go:
char := '\u2ABE'
fmt.Printf("%c\n", char) // Output: ⪾
CSS:
/* CSS content property */
.element::before {
content: "\002ABE"; /* 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=%E2%AA%BE
MD5:
0a01052d084005713830ff60a7ab6e33
SHA1:
cbb35529d8327b2eb2c06e0fb9fc73e77208320c
Base64:
4qq+