Unicode Finder

"⊎" U+228E(MULTISET UNION)

U+228E
Block Name
Mathematical Operators
Name
MULTISET UNION

Programming

C
\u228E
JavaScript
\u228E
Java
\u228E
Json
\u228E
Python
\u228E
Perl
\x{228E}
PHP
\x{228E}
Ruby
\u{228E}
Rust
\u{228E}
Go
\u228E

Web

CSS
\00228E
HtmlDecimal
⊎
HtmlHexadecimal
⊎
Url
%E2%8A%8E

Code

MD5
a642f7e17ae05219be319a0aae8b4f37
Sha1
c494b2d9d139f3bc8596d6bd819eb92d8e667b5a
Base64
4oqO

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u228E';
console.log(char);  // Output: ⊎

Java:

char c = '\u228E';
System.out.println(c);  // Output: ⊎

JSON:

{"text": "\u228E"}  // Value: ⊎

Python:

char = '\u228E'
print(char)  # Output: ⊎

Perl:

my $char = "\x{228E}";
print $char;  # Output: ⊎

PHP:

$char = "\x{228E}";
echo $char;  // Output: ⊎

Ruby:

char = "\u{228E}"
puts char  # Output: ⊎

Rust:

let c = '\u{228E}';
println!("{}", c);  // Output: ⊎

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00228E";  /* Display: ⊎ */
}

HTML Decimal:

<p>HTML decimal: &#8846;</p>  <!-- Display: ⊎ -->

HTML Hexadecimal:

<p>HTML hex: &#x228E;</p>  <!-- Display: ⊎ -->

URL Encoding:

// ⊎ URL encoding
https://unicodefinder.com/search.php?query=%E2%8A%8E

Encodings

MD5:

a642f7e17ae05219be319a0aae8b4f37

SHA1:

c494b2d9d139f3bc8596d6bd819eb92d8e667b5a

Base64:

4oqO