Unicode Finder

"⪰" U+2AB0(SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN)

U+2AB0
Block Name
Supplemental Mathematical Operators
Name
SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN

Programming

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

Web

CSS
\002AB0
HtmlDecimal
⪰
HtmlHexadecimal
⪰
Url
%E2%AA%B0

Code

MD5
c4c30672fcf878f7971c6e2be4e1d392
Sha1
cf288d9c04ad730b4e625c4fcaf3108c61973342
Base64
4qqw

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AB0';
console.log(char);  // Output: ⪰

Java:

char c = '\u2AB0';
System.out.println(c);  // Output: ⪰

JSON:

{"text": "\u2AB0"}  // Value: ⪰

Python:

char = '\u2AB0'
print(char)  # Output: ⪰

Perl:

my $char = "\x{2AB0}";
print $char;  # Output: ⪰

PHP:

$char = "\x{2AB0}";
echo $char;  // Output: ⪰

Ruby:

char = "\u{2AB0}"
puts char  # Output: ⪰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10928;</p>  <!-- Display: ⪰ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AB0;</p>  <!-- Display: ⪰ -->

URL Encoding:

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

Encodings

MD5:

c4c30672fcf878f7971c6e2be4e1d392

SHA1:

cf288d9c04ad730b4e625c4fcaf3108c61973342

Base64:

4qqw