Unicode Finder

"⫅" U+2AC5(SUBSET OF ABOVE EQUALS SIGN)

U+2AC5
Block Name
Supplemental Mathematical Operators
Name
SUBSET OF ABOVE EQUALS SIGN

Programming

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

Web

CSS
\002AC5
HtmlDecimal
⫅
HtmlHexadecimal
⫅
Url
%E2%AB%85

Code

MD5
6251b14a7447de96a636fa917ff565c4
Sha1
cbbf83dd4623f966aab24e9a25af1a9329f6f504
Base64
4quF

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AC5';
console.log(char);  // Output: ⫅

Java:

char c = '\u2AC5';
System.out.println(c);  // Output: ⫅

JSON:

{"text": "\u2AC5"}  // Value: ⫅

Python:

char = '\u2AC5'
print(char)  # Output: ⫅

Perl:

my $char = "\x{2AC5}";
print $char;  # Output: ⫅

PHP:

$char = "\x{2AC5}";
echo $char;  // Output: ⫅

Ruby:

char = "\u{2AC5}"
puts char  # Output: ⫅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10949;</p>  <!-- Display: ⫅ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AC5;</p>  <!-- Display: ⫅ -->

URL Encoding:

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

Encodings

MD5:

6251b14a7447de96a636fa917ff565c4

SHA1:

cbbf83dd4623f966aab24e9a25af1a9329f6f504

Base64:

4quF