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