Unicode Finder

"⩮" U+2A6E(EQUALS WITH ASTERISK)

U+2A6E
Block Name
Supplemental Mathematical Operators
Name
EQUALS WITH ASTERISK

Programming

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

Web

CSS
\002A6E
HtmlDecimal
⩮
HtmlHexadecimal
⩮
Url
%E2%A9%AE

Code

MD5
154ae9f278676462152604074c723352
Sha1
25db8dc4f9c7cc35f236e8fa1a9163613a02aef2
Base64
4qmu

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2A6E';
console.log(char);  // Output: ⩮

Java:

char c = '\u2A6E';
System.out.println(c);  // Output: ⩮

JSON:

{"text": "\u2A6E"}  // Value: ⩮

Python:

char = '\u2A6E'
print(char)  # Output: ⩮

Perl:

my $char = "\x{2A6E}";
print $char;  # Output: ⩮

PHP:

$char = "\x{2A6E}";
echo $char;  // Output: ⩮

Ruby:

char = "\u{2A6E}"
puts char  # Output: ⩮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10862;</p>  <!-- Display: ⩮ -->

HTML Hexadecimal:

<p>HTML hex: &#x2A6E;</p>  <!-- Display: ⩮ -->

URL Encoding:

// ⩮ URL encoding
https://unicodefinder.com/search.php?query=%E2%A9%AE

Encodings

MD5:

154ae9f278676462152604074c723352

SHA1:

25db8dc4f9c7cc35f236e8fa1a9163613a02aef2

Base64:

4qmu