Unicode Finder

"⊍" U+228D(MULTISET MULTIPLICATION)

U+228D
Block Name
Mathematical Operators
Name
MULTISET MULTIPLICATION

Programming

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

Web

CSS
\00228D
HtmlDecimal
⊍
HtmlHexadecimal
⊍
Url
%E2%8A%8D

Code

MD5
5d0e16a96b9f55034d23ddb72dd382da
Sha1
5bdcc27c647a8a13430d87da5b8be5d5baa4f374
Base64
4oqN

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u228D';
console.log(char);  // Output: ⊍

Java:

char c = '\u228D';
System.out.println(c);  // Output: ⊍

JSON:

{"text": "\u228D"}  // Value: ⊍

Python:

char = '\u228D'
print(char)  # Output: ⊍

Perl:

my $char = "\x{228D}";
print $char;  # Output: ⊍

PHP:

$char = "\x{228D}";
echo $char;  // Output: ⊍

Ruby:

char = "\u{228D}"
puts char  # Output: ⊍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8845;</p>  <!-- Display: ⊍ -->

HTML Hexadecimal:

<p>HTML hex: &#x228D;</p>  <!-- Display: ⊍ -->

URL Encoding:

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

Encodings

MD5:

5d0e16a96b9f55034d23ddb72dd382da

SHA1:

5bdcc27c647a8a13430d87da5b8be5d5baa4f374

Base64:

4oqN