Unicode Finder

"⫂" U+2AC2(SUPERSET WITH MULTIPLICATION SIGN BELOW)

U+2AC2
Block Name
Supplemental Mathematical Operators
Name
SUPERSET WITH MULTIPLICATION SIGN BELOW

Programming

C
\u2AC2
JavaScript
\u2AC2
Java
\u2AC2
Json
\u2AC2
Python
\u2AC2
Perl
\x{2AC2}
PHP
\x{2AC2}
Ruby
\u{2AC2}
Rust
\u{2AC2}
Go
\u2AC2

Web

CSS
\002AC2
HtmlDecimal
⫂
HtmlHexadecimal
⫂
Url
%E2%AB%82

Code

MD5
eae2b303977e38986d324d862c4b82ba
Sha1
7536c7e859a726482f6dacae89393d6184633e41
Base64
4quC

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AC2';
console.log(char);  // Output: ⫂

Java:

char c = '\u2AC2';
System.out.println(c);  // Output: ⫂

JSON:

{"text": "\u2AC2"}  // Value: ⫂

Python:

char = '\u2AC2'
print(char)  # Output: ⫂

Perl:

my $char = "\x{2AC2}";
print $char;  # Output: ⫂

PHP:

$char = "\x{2AC2}";
echo $char;  // Output: ⫂

Ruby:

char = "\u{2AC2}"
puts char  # Output: ⫂

Rust:

let c = '\u{2AC2}';
println!("{}", c);  // Output: ⫂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002AC2";  /* Display: ⫂ */
}

HTML Decimal:

<p>HTML decimal: &#10946;</p>  <!-- Display: ⫂ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AC2;</p>  <!-- Display: ⫂ -->

URL Encoding:

// ⫂ URL encoding
https://unicodefinder.com/search.php?query=%E2%AB%82

Encodings

MD5:

eae2b303977e38986d324d862c4b82ba

SHA1:

7536c7e859a726482f6dacae89393d6184633e41

Base64:

4quC