Unicode Finder

"⫁" U+2AC1(SUBSET WITH MULTIPLICATION SIGN BELOW)

U+2AC1
Block Name
Supplemental Mathematical Operators
Name
SUBSET WITH MULTIPLICATION SIGN BELOW

Programming

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

Web

CSS
\002AC1
HtmlDecimal
⫁
HtmlHexadecimal
⫁
Url
%E2%AB%81

Code

MD5
eb255f2c27ca4709145678d2626a4c79
Sha1
4294f89896a790a5fe187551a31633f55e74b668
Base64
4quB

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AC1';
console.log(char);  // Output: ⫁

Java:

char c = '\u2AC1';
System.out.println(c);  // Output: ⫁

JSON:

{"text": "\u2AC1"}  // Value: ⫁

Python:

char = '\u2AC1'
print(char)  # Output: ⫁

Perl:

my $char = "\x{2AC1}";
print $char;  # Output: ⫁

PHP:

$char = "\x{2AC1}";
echo $char;  // Output: ⫁

Ruby:

char = "\u{2AC1}"
puts char  # Output: ⫁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10945;</p>  <!-- Display: ⫁ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AC1;</p>  <!-- Display: ⫁ -->

URL Encoding:

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

Encodings

MD5:

eb255f2c27ca4709145678d2626a4c79

SHA1:

4294f89896a790a5fe187551a31633f55e74b668

Base64:

4quB