Unicode Finder

"⪵" U+2AB5(PRECEDES ABOVE NOT EQUAL TO)

U+2AB5
Block Name
Supplemental Mathematical Operators
Name
PRECEDES ABOVE NOT EQUAL TO

Programming

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

Web

CSS
\002AB5
HtmlDecimal
⪵
HtmlHexadecimal
⪵
Url
%E2%AA%B5

Code

MD5
43c4c3c8efc1b392f339737eed9031b5
Sha1
e21cc29cd96403b855ea226110a8794364c8e802
Base64
4qq1

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AB5';
console.log(char);  // Output: ⪵

Java:

char c = '\u2AB5';
System.out.println(c);  // Output: ⪵

JSON:

{"text": "\u2AB5"}  // Value: ⪵

Python:

char = '\u2AB5'
print(char)  # Output: ⪵

Perl:

my $char = "\x{2AB5}";
print $char;  # Output: ⪵

PHP:

$char = "\x{2AB5}";
echo $char;  // Output: ⪵

Ruby:

char = "\u{2AB5}"
puts char  # Output: ⪵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10933;</p>  <!-- Display: ⪵ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AB5;</p>  <!-- Display: ⪵ -->

URL Encoding:

// ⪵ URL encoding
https://unicodefinder.com/search.php?query=%E2%AA%B5

Encodings

MD5:

43c4c3c8efc1b392f339737eed9031b5

SHA1:

e21cc29cd96403b855ea226110a8794364c8e802

Base64:

4qq1