Unicode Finder

"∑" U+2211(N-ARY SUMMATION)

U+2211
Όνομα Μπλοκ
Mathematical Operators
Όνομα
N-ARY SUMMATION

Programming

C
\u2211
JavaScript
\u2211
Java
\u2211
Json
\u2211
Python
\u2211
Perl
\x{2211}
PHP
\x{2211}
Ruby
\u{2211}
Rust
\u{2211}
Go
\u2211

Web

CSS
\002211
HtmlDecimal
∑
HtmlHexadecimal
∑
Url
%E2%88%91

Code

MD5
f3cd3ef0207eb4041a4e8d8b37a3b410
Sha1
2c64364f5b3308d1304b7ad2550ba86cd35a8500
Base64
4oiR

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u2211';
console.log(char);  // Output: ∑

Java:

char c = '\u2211';
System.out.println(c);  // Output: ∑

JSON:

{"text": "\u2211"}  // Value: ∑

Python:

char = '\u2211'
print(char)  # Output: ∑

Perl:

my $char = "\x{2211}";
print $char;  # Output: ∑

PHP:

$char = "\x{2211}";
echo $char;  // Output: ∑

Ruby:

char = "\u{2211}"
puts char  # Output: ∑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002211";  /* Display: ∑ */
}

HTML Decimal:

<p>HTML decimal: &#8721;</p>  <!-- Display: ∑ -->

HTML Hexadecimal:

<p>HTML hex: &#x2211;</p>  <!-- Display: ∑ -->

URL Encoding:

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

Encodings

MD5:

f3cd3ef0207eb4041a4e8d8b37a3b410

SHA1:

2c64364f5b3308d1304b7ad2550ba86cd35a8500

Base64:

4oiR