C:
char c = '\u2225';
printf("%c\n", c); // Output: ∥
JavaScript:
const char = '\u2225';
console.log(char); // Output: ∥
Java:
char c = '\u2225';
System.out.println(c); // Output: ∥
JSON:
{"text": "\u2225"} // Value: ∥
Python:
char = '\u2225'
print(char) # Output: ∥
Perl:
my $char = "\x{2225}";
print $char; # Output: ∥
PHP:
$char = "\x{2225}";
echo $char; // Output: ∥
Ruby:
char = "\u{2225}"
puts char # Output: ∥
Rust:
let c = '\u{2225}';
println!("{}", c); // Output: ∥
Go:
char := '\u2225'
fmt.Printf("%c\n", char) // Output: ∥
CSS:
/* CSS content property */
.element::before {
content: "\002225"; /* 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%A5
MD5:
07b71b0c30c5e44746c34f464b26c88c
SHA1:
db9b9d8e01673e422b710c2ef967da0dea4125f9
Base64:
4oil