C:
char c = '\u2223';
printf("%c\n", c); // Output: ∣
JavaScript:
const char = '\u2223';
console.log(char); // Output: ∣
Java:
char c = '\u2223';
System.out.println(c); // Output: ∣
JSON:
{"text": "\u2223"} // Value: ∣
Python:
char = '\u2223'
print(char) # Output: ∣
Perl:
my $char = "\x{2223}";
print $char; # Output: ∣
PHP:
$char = "\x{2223}";
echo $char; // Output: ∣
Ruby:
char = "\u{2223}"
puts char # Output: ∣
Rust:
let c = '\u{2223}';
println!("{}", c); // Output: ∣
Go:
char := '\u2223'
fmt.Printf("%c\n", char) // Output: ∣
CSS:
/* CSS content property */
.element::before {
content: "\002223"; /* 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%A3
MD5:
423aa32111bf05588b727eeca8d476ef
SHA1:
02b4a8380d80c10ae04b24c080d2f9c890ce6453
Base64:
4oij