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