Unicode Finder

"⫌" U+2ACC(SUPERSET OF ABOVE NOT EQUAL TO)

U+2ACC
Block Name
Supplemental Mathematical Operators
Name
SUPERSET OF ABOVE NOT EQUAL TO

Programming

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

Web

CSS
\002ACC
HtmlDecimal
⫌
HtmlHexadecimal
⫌
Url
%E2%AB%8C

Code

MD5
b157c2b41843ac84a740fb1a0f3c6a4f
Sha1
f8c9e6f5429ad79ad9f780428563efbf52d2e416
Base64
4quM

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2ACC';
console.log(char);  // Output: ⫌

Java:

char c = '\u2ACC';
System.out.println(c);  // Output: ⫌

JSON:

{"text": "\u2ACC"}  // Value: ⫌

Python:

char = '\u2ACC'
print(char)  # Output: ⫌

Perl:

my $char = "\x{2ACC}";
print $char;  # Output: ⫌

PHP:

$char = "\x{2ACC}";
echo $char;  // Output: ⫌

Ruby:

char = "\u{2ACC}"
puts char  # Output: ⫌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10956;</p>  <!-- Display: ⫌ -->

HTML Hexadecimal:

<p>HTML hex: &#x2ACC;</p>  <!-- Display: ⫌ -->

URL Encoding:

// ⫌ URL encoding
https://unicodefinder.com/search.php?query=%E2%AB%8C

Encodings

MD5:

b157c2b41843ac84a740fb1a0f3c6a4f

SHA1:

f8c9e6f5429ad79ad9f780428563efbf52d2e416

Base64:

4quM