C:
char c = '\u2233';
printf("%c\n", c); // Output: ∳
JavaScript:
const char = '\u2233';
console.log(char); // Output: ∳
Java:
char c = '\u2233';
System.out.println(c); // Output: ∳
JSON:
{"text": "\u2233"} // Value: ∳
Python:
char = '\u2233'
print(char) # Output: ∳
Perl:
my $char = "\x{2233}";
print $char; # Output: ∳
PHP:
$char = "\x{2233}";
echo $char; // Output: ∳
Ruby:
char = "\u{2233}"
puts char # Output: ∳
Rust:
let c = '\u{2233}';
println!("{}", c); // Output: ∳
Go:
char := '\u2233'
fmt.Printf("%c\n", char) // Output: ∳
CSS:
/* CSS content property */
.element::before {
content: "\002233"; /* 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%88%B3
MD5:
de634382d820e9897b0ca52f7b593020
SHA1:
a9f005af71a85941115318bd445512355c9dac3f
Base64:
4oiz