C:
char c = '\u2218';
printf("%c\n", c); // Output: ∘
JavaScript:
const char = '\u2218';
console.log(char); // Output: ∘
Java:
char c = '\u2218';
System.out.println(c); // Output: ∘
JSON:
{"text": "\u2218"} // Value: ∘
Python:
char = '\u2218'
print(char) # Output: ∘
Perl:
my $char = "\x{2218}";
print $char; # Output: ∘
PHP:
$char = "\x{2218}";
echo $char; // Output: ∘
Ruby:
char = "\u{2218}"
puts char # Output: ∘
Rust:
let c = '\u{2218}';
println!("{}", c); // Output: ∘
Go:
char := '\u2218'
fmt.Printf("%c\n", char) // Output: ∘
CSS:
/* CSS content property */
.element::before {
content: "\002218"; /* 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%98
MD5:
a0f16e46aaabb20f95b6d0c08f0cc003
SHA1:
5b5909fddb525aa660491489f29130fb2a448fd7
Base64:
4oiY