Unicode Finder

"∐" U+2210(N-ARY COPRODUCT)

U+2210
Nama Blok
Mathematical Operators
Nama
N-ARY COPRODUCT

Programming

C
\u2210
JavaScript
\u2210
Java
\u2210
Json
\u2210
Python
\u2210
Perl
\x{2210}
PHP
\x{2210}
Ruby
\u{2210}
Rust
\u{2210}
Go
\u2210

Web

CSS
\002210
HtmlDecimal
∐
HtmlHexadecimal
∐
Url
%E2%88%90

Code

MD5
35ed56c59a8c2afed3e94900b48221d9
Sha1
abb793ba19e914203722d476a09f38e247965373
Base64
4oiQ

Contoh Penggunaan

Programming Languages

C:

char c = '\u2210';
printf("%c\n", c);  // Output: ∐

JavaScript:

const char = '\u2210';
console.log(char);  // Output: ∐

Java:

char c = '\u2210';
System.out.println(c);  // Output: ∐

JSON:

{"text": "\u2210"}  // Value: ∐

Python:

char = '\u2210'
print(char)  # Output: ∐

Perl:

my $char = "\x{2210}";
print $char;  # Output: ∐

PHP:

$char = "\x{2210}";
echo $char;  // Output: ∐

Ruby:

char = "\u{2210}"
puts char  # Output: ∐

Rust:

let c = '\u{2210}';
println!("{}", c);  // Output: ∐

Go:

char := '\u2210'
fmt.Printf("%c\n", char)  // Output: ∐

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002210";  /* Display: ∐ */
}

HTML Decimal:

<p>HTML decimal: &#8720;</p>  <!-- Display: ∐ -->

HTML Hexadecimal:

<p>HTML hex: &#x2210;</p>  <!-- Display: ∐ -->

URL Encoding:

// ∐ URL encoding
https://unicodefinder.com/search.php?query=%E2%88%90

Encodings

MD5:

35ed56c59a8c2afed3e94900b48221d9

SHA1:

abb793ba19e914203722d476a09f38e247965373

Base64:

4oiQ