Unicode Finder

"⊈" U+2288(NEITHER A SUBSET OF NOR EQUAL TO)

U+2288
Block Name
Mathematical Operators
Name
NEITHER A SUBSET OF NOR EQUAL TO

Programming

C
\u2288
JavaScript
\u2288
Java
\u2288
Json
\u2288
Python
\u2288
Perl
\x{2288}
PHP
\x{2288}
Ruby
\u{2288}
Rust
\u{2288}
Go
\u2288

Web

CSS
\002288
HtmlDecimal
⊈
HtmlHexadecimal
⊈
Url
%E2%8A%88

Code

MD5
0d042531d7875b393dd5605294620628
Sha1
602203a643e5271ce0a9df50565b231bc5242e6a
Base64
4oqI

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2288';
console.log(char);  // Output: ⊈

Java:

char c = '\u2288';
System.out.println(c);  // Output: ⊈

JSON:

{"text": "\u2288"}  // Value: ⊈

Python:

char = '\u2288'
print(char)  # Output: ⊈

Perl:

my $char = "\x{2288}";
print $char;  # Output: ⊈

PHP:

$char = "\x{2288}";
echo $char;  // Output: ⊈

Ruby:

char = "\u{2288}"
puts char  # Output: ⊈

Rust:

let c = '\u{2288}';
println!("{}", c);  // Output: ⊈

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002288";  /* Display: ⊈ */
}

HTML Decimal:

<p>HTML decimal: &#8840;</p>  <!-- Display: ⊈ -->

HTML Hexadecimal:

<p>HTML hex: &#x2288;</p>  <!-- Display: ⊈ -->

URL Encoding:

// ⊈ URL encoding
https://unicodefinder.com/search.php?query=%E2%8A%88

Encodings

MD5:

0d042531d7875b393dd5605294620628

SHA1:

602203a643e5271ce0a9df50565b231bc5242e6a

Base64:

4oqI