Unicode Finder

"⩱" U+2A71(EQUALS SIGN ABOVE PLUS SIGN)

U+2A71
Block Name
Supplemental Mathematical Operators
Name
EQUALS SIGN ABOVE PLUS SIGN

Programming

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

Web

CSS
\002A71
HtmlDecimal
⩱
HtmlHexadecimal
⩱
Url
%E2%A9%B1

Code

MD5
cca1055f05049454fe61e9c5193a324c
Sha1
f018178258049c2cc96eb14ebd9187686090c3e8
Base64
4qmx

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2A71';
console.log(char);  // Output: ⩱

Java:

char c = '\u2A71';
System.out.println(c);  // Output: ⩱

JSON:

{"text": "\u2A71"}  // Value: ⩱

Python:

char = '\u2A71'
print(char)  # Output: ⩱

Perl:

my $char = "\x{2A71}";
print $char;  # Output: ⩱

PHP:

$char = "\x{2A71}";
echo $char;  // Output: ⩱

Ruby:

char = "\u{2A71}"
puts char  # Output: ⩱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10865;</p>  <!-- Display: ⩱ -->

HTML Hexadecimal:

<p>HTML hex: &#x2A71;</p>  <!-- Display: ⩱ -->

URL Encoding:

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

Encodings

MD5:

cca1055f05049454fe61e9c5193a324c

SHA1:

f018178258049c2cc96eb14ebd9187686090c3e8

Base64:

4qmx