Unicode Finder

"⪫" U+2AAB(LARGER THAN)

U+2AAB
Block Name
Supplemental Mathematical Operators
Name
LARGER THAN

Programming

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

Web

CSS
\002AAB
HtmlDecimal
⪫
HtmlHexadecimal
⪫
Url
%E2%AA%AB

Code

MD5
ba0fdb6c1b88507629868f41640784e8
Sha1
e7c0608e631962b34d4b4cb06e2149fe7a062a86
Base64
4qqr

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AAB';
console.log(char);  // Output: ⪫

Java:

char c = '\u2AAB';
System.out.println(c);  // Output: ⪫

JSON:

{"text": "\u2AAB"}  // Value: ⪫

Python:

char = '\u2AAB'
print(char)  # Output: ⪫

Perl:

my $char = "\x{2AAB}";
print $char;  # Output: ⪫

PHP:

$char = "\x{2AAB}";
echo $char;  // Output: ⪫

Ruby:

char = "\u{2AAB}"
puts char  # Output: ⪫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10923;</p>  <!-- Display: ⪫ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AAB;</p>  <!-- Display: ⪫ -->

URL Encoding:

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

Encodings

MD5:

ba0fdb6c1b88507629868f41640784e8

SHA1:

e7c0608e631962b34d4b4cb06e2149fe7a062a86

Base64:

4qqr