C:
char c = '\u220F';
printf("%c\n", c); // Output: ∏
JavaScript:
const char = '\u220F';
console.log(char); // Output: ∏
Java:
char c = '\u220F';
System.out.println(c); // Output: ∏
JSON:
{"text": "\u220F"} // Value: ∏
Python:
char = '\u220F'
print(char) # Output: ∏
Perl:
my $char = "\x{220F}";
print $char; # Output: ∏
PHP:
$char = "\x{220F}";
echo $char; // Output: ∏
Ruby:
char = "\u{220F}"
puts char # Output: ∏
Rust:
let c = '\u{220F}';
println!("{}", c); // Output: ∏
Go:
char := '\u220F'
fmt.Printf("%c\n", char) // Output: ∏
CSS:
/* CSS content property */
.element::before {
content: "\00220F"; /* 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%8F
MD5:
e029f3fe22354febde6cc778756e9dd6
SHA1:
42630f02bf224a6d984cffb5a3fc12f36152faac
Base64:
4oiP