C:
char c = '\u2214';
printf("%c\n", c); // Output: ∔
JavaScript:
const char = '\u2214';
console.log(char); // Output: ∔
Java:
char c = '\u2214';
System.out.println(c); // Output: ∔
JSON:
{"text": "\u2214"} // Value: ∔
Python:
char = '\u2214'
print(char) # Output: ∔
Perl:
my $char = "\x{2214}";
print $char; # Output: ∔
PHP:
$char = "\x{2214}";
echo $char; // Output: ∔
Ruby:
char = "\u{2214}"
puts char # Output: ∔
Rust:
let c = '\u{2214}';
println!("{}", c); // Output: ∔
Go:
char := '\u2214'
fmt.Printf("%c\n", char) // Output: ∔
CSS:
/* CSS content property */
.element::before {
content: "\002214"; /* 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%94
MD5:
b7441a153a7c276bb1916c34217e2d2a
SHA1:
4afcb55d5f82193c44d4d9b8f20a80d04695445b
Base64:
4oiU