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