Unicode Finder

"⫆" U+2AC6(SUPERSET OF ABOVE EQUALS SIGN)

U+2AC6
Block Name
Supplemental Mathematical Operators
Name
SUPERSET OF ABOVE EQUALS SIGN

Programming

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

Web

CSS
\002AC6
HtmlDecimal
⫆
HtmlHexadecimal
⫆
Url
%E2%AB%86

Code

MD5
6c77a5a4de71d465044e4e97c50ef084
Sha1
b38d7ce06bf65a8392ff8a0f1be56b3bf82510b8
Base64
4quG

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AC6';
console.log(char);  // Output: ⫆

Java:

char c = '\u2AC6';
System.out.println(c);  // Output: ⫆

JSON:

{"text": "\u2AC6"}  // Value: ⫆

Python:

char = '\u2AC6'
print(char)  # Output: ⫆

Perl:

my $char = "\x{2AC6}";
print $char;  # Output: ⫆

PHP:

$char = "\x{2AC6}";
echo $char;  // Output: ⫆

Ruby:

char = "\u{2AC6}"
puts char  # Output: ⫆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10950;</p>  <!-- Display: ⫆ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AC6;</p>  <!-- Display: ⫆ -->

URL Encoding:

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

Encodings

MD5:

6c77a5a4de71d465044e4e97c50ef084

SHA1:

b38d7ce06bf65a8392ff8a0f1be56b3bf82510b8

Base64:

4quG