Unicode Finder

"≢" U+2262(NOT IDENTICAL TO)

U+2262
Block Name
Mathematical Operators
Name
NOT IDENTICAL TO

Programming

C
\u2262
JavaScript
\u2262
Java
\u2262
Json
\u2262
Python
\u2262
Perl
\x{2262}
PHP
\x{2262}
Ruby
\u{2262}
Rust
\u{2262}
Go
\u2262

Web

CSS
\002262
HtmlDecimal
≢
HtmlHexadecimal
≢
Url
%E2%89%A2

Code

MD5
86a2246d16759746f085d4d782002afe
Sha1
3c2169ed8d6221b32c8e75626c181edd432f5b52
Base64
4omi

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2262';
console.log(char);  // Output: ≢

Java:

char c = '\u2262';
System.out.println(c);  // Output: ≢

JSON:

{"text": "\u2262"}  // Value: ≢

Python:

char = '\u2262'
print(char)  # Output: ≢

Perl:

my $char = "\x{2262}";
print $char;  # Output: ≢

PHP:

$char = "\x{2262}";
echo $char;  // Output: ≢

Ruby:

char = "\u{2262}"
puts char  # Output: ≢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002262";  /* Display: ≢ */
}

HTML Decimal:

<p>HTML decimal: &#8802;</p>  <!-- Display: ≢ -->

HTML Hexadecimal:

<p>HTML hex: &#x2262;</p>  <!-- Display: ≢ -->

URL Encoding:

// ≢ URL encoding
https://unicodefinder.com/search.php?query=%E2%89%A2

Encodings

MD5:

86a2246d16759746f085d4d782002afe

SHA1:

3c2169ed8d6221b32c8e75626c181edd432f5b52

Base64:

4omi