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