Unicode Finder

"⪲" U+2AB2(SUCCEEDS ABOVE SINGLE-LINE NOT EQUAL TO)

U+2AB2
Block Name
Supplemental Mathematical Operators
Name
SUCCEEDS ABOVE SINGLE-LINE NOT EQUAL TO

Programming

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

Web

CSS
\002AB2
HtmlDecimal
⪲
HtmlHexadecimal
⪲
Url
%E2%AA%B2

Code

MD5
09eb56efd947bd393ccd9b85b5a0d541
Sha1
881c8c115f621aa83ac93886f7f58a79419e501b
Base64
4qqy

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AB2';
console.log(char);  // Output: ⪲

Java:

char c = '\u2AB2';
System.out.println(c);  // Output: ⪲

JSON:

{"text": "\u2AB2"}  // Value: ⪲

Python:

char = '\u2AB2'
print(char)  # Output: ⪲

Perl:

my $char = "\x{2AB2}";
print $char;  # Output: ⪲

PHP:

$char = "\x{2AB2}";
echo $char;  // Output: ⪲

Ruby:

char = "\u{2AB2}"
puts char  # Output: ⪲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10930;</p>  <!-- Display: ⪲ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AB2;</p>  <!-- Display: ⪲ -->

URL Encoding:

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

Encodings

MD5:

09eb56efd947bd393ccd9b85b5a0d541

SHA1:

881c8c115f621aa83ac93886f7f58a79419e501b

Base64:

4qqy