Unicode Finder

"∪" U+222A(UNION)

U+222A
Blockname
Mathematical Operators
Name
UNION

Programming

C
\u222A
JavaScript
\u222A
Java
\u222A
Json
\u222A
Python
\u222A
Perl
\x{222A}
PHP
\x{222A}
Ruby
\u{222A}
Rust
\u{222A}
Go
\u222A

Web

CSS
\00222A
HtmlDecimal
∪
HtmlHexadecimal
∪
Url
%E2%88%AA

Code

MD5
f3cef465dc643930d97faf93729b90dc
Sha1
5f171bafbe48ef83bb7dd8e03bac86f3bc249cad
Base64
4oiq

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u222A';
console.log(char);  // Output: ∪

Java:

char c = '\u222A';
System.out.println(c);  // Output: ∪

JSON:

{"text": "\u222A"}  // Value: ∪

Python:

char = '\u222A'
print(char)  # Output: ∪

Perl:

my $char = "\x{222A}";
print $char;  # Output: ∪

PHP:

$char = "\x{222A}";
echo $char;  // Output: ∪

Ruby:

char = "\u{222A}"
puts char  # Output: ∪

Rust:

let c = '\u{222A}';
println!("{}", c);  // Output: ∪

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00222A";  /* Display: ∪ */
}

HTML Decimal:

<p>HTML decimal: &#8746;</p>  <!-- Display: ∪ -->

HTML Hexadecimal:

<p>HTML hex: &#x222A;</p>  <!-- Display: ∪ -->

URL Encoding:

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

Encodings

MD5:

f3cef465dc643930d97faf93729b90dc

SHA1:

5f171bafbe48ef83bb7dd8e03bac86f3bc249cad

Base64:

4oiq