C:
char c = '\u2226';
printf("%c\n", c); // Output: ∦
JavaScript:
const char = '\u2226';
console.log(char); // Output: ∦
Java:
char c = '\u2226';
System.out.println(c); // Output: ∦
JSON:
{"text": "\u2226"} // Value: ∦
Python:
char = '\u2226'
print(char) # Output: ∦
Perl:
my $char = "\x{2226}";
print $char; # Output: ∦
PHP:
$char = "\x{2226}";
echo $char; // Output: ∦
Ruby:
char = "\u{2226}"
puts char # Output: ∦
Rust:
let c = '\u{2226}';
println!("{}", c); // Output: ∦
Go:
char := '\u2226'
fmt.Printf("%c\n", char) // Output: ∦
CSS:
/* CSS content property */
.element::before {
content: "\002226"; /* 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%A6
MD5:
8788570f6114e1797ef4394bd2322ed0
SHA1:
91a0efd2afcb35ca7839c02b743b65e690cb99f7
Base64:
4oim