C:
char c = '\u220B';
printf("%c\n", c); // Output: ∋
JavaScript:
const char = '\u220B';
console.log(char); // Output: ∋
Java:
char c = '\u220B';
System.out.println(c); // Output: ∋
JSON:
{"text": "\u220B"} // Value: ∋
Python:
char = '\u220B'
print(char) # Output: ∋
Perl:
my $char = "\x{220B}";
print $char; # Output: ∋
PHP:
$char = "\x{220B}";
echo $char; // Output: ∋
Ruby:
char = "\u{220B}"
puts char # Output: ∋
Rust:
let c = '\u{220B}';
println!("{}", c); // Output: ∋
Go:
char := '\u220B'
fmt.Printf("%c\n", char) // Output: ∋
CSS:
/* CSS content property */
.element::before {
content: "\00220B"; /* 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%8B
MD5:
6b0549a5378c4789cdefc73989af7769
SHA1:
2df2d211f442c32a1974a7ac68aec3293d78134f
Base64:
4oiL