Unicode Finder

"⊌" U+228C(MULTISET)

U+228C
Block Name
Mathematical Operators
Name
MULTISET

Programming

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

Web

CSS
\00228C
HtmlDecimal
⊌
HtmlHexadecimal
⊌
Url
%E2%8A%8C

Code

MD5
f8709e07ecaf2e1f942f9a9f7f69f7f3
Sha1
762295658594a0055f4d4a7114462e1a79bcbf60
Base64
4oqM

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u228C';
console.log(char);  // Output: ⊌

Java:

char c = '\u228C';
System.out.println(c);  // Output: ⊌

JSON:

{"text": "\u228C"}  // Value: ⊌

Python:

char = '\u228C'
print(char)  # Output: ⊌

Perl:

my $char = "\x{228C}";
print $char;  # Output: ⊌

PHP:

$char = "\x{228C}";
echo $char;  // Output: ⊌

Ruby:

char = "\u{228C}"
puts char  # Output: ⊌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8844;</p>  <!-- Display: ⊌ -->

HTML Hexadecimal:

<p>HTML hex: &#x228C;</p>  <!-- Display: ⊌ -->

URL Encoding:

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

Encodings

MD5:

f8709e07ecaf2e1f942f9a9f7f69f7f3

SHA1:

762295658594a0055f4d4a7114462e1a79bcbf60

Base64:

4oqM