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