C:
char c = '\u2ABF';
printf("%c\n", c); // Output: ⪿
JavaScript:
const char = '\u2ABF';
console.log(char); // Output: ⪿
Java:
char c = '\u2ABF';
System.out.println(c); // Output: ⪿
JSON:
{"text": "\u2ABF"} // Value: ⪿
Python:
char = '\u2ABF'
print(char) # Output: ⪿
Perl:
my $char = "\x{2ABF}";
print $char; # Output: ⪿
PHP:
$char = "\x{2ABF}";
echo $char; // Output: ⪿
Ruby:
char = "\u{2ABF}"
puts char # Output: ⪿
Rust:
let c = '\u{2ABF}';
println!("{}", c); // Output: ⪿
Go:
char := '\u2ABF'
fmt.Printf("%c\n", char) // Output: ⪿
CSS:
/* CSS content property */
.element::before {
content: "\002ABF"; /* 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%BF
MD5:
75529a1526a1635ff812ab9efbf55ecf
SHA1:
9f2a3b10fb987190cbd9e64ffcffcbcf061050d1
Base64:
4qq/