Unicode Finder

"⪴" U+2AB4(SUCCEEDS ABOVE EQUALS SIGN)

U+2AB4
Block Name
Supplemental Mathematical Operators
Name
SUCCEEDS ABOVE EQUALS SIGN

Programming

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

Web

CSS
\002AB4
HtmlDecimal
⪴
HtmlHexadecimal
⪴
Url
%E2%AA%B4

Code

MD5
e6a5bcb105fb629db2ef0ff91289aef0
Sha1
3d3a74fec3458c7a7289823d9fe95ffedfc9daad
Base64
4qq0

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AB4';
console.log(char);  // Output: ⪴

Java:

char c = '\u2AB4';
System.out.println(c);  // Output: ⪴

JSON:

{"text": "\u2AB4"}  // Value: ⪴

Python:

char = '\u2AB4'
print(char)  # Output: ⪴

Perl:

my $char = "\x{2AB4}";
print $char;  # Output: ⪴

PHP:

$char = "\x{2AB4}";
echo $char;  // Output: ⪴

Ruby:

char = "\u{2AB4}"
puts char  # Output: ⪴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10932;</p>  <!-- Display: ⪴ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AB4;</p>  <!-- Display: ⪴ -->

URL Encoding:

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

Encodings

MD5:

e6a5bcb105fb629db2ef0ff91289aef0

SHA1:

3d3a74fec3458c7a7289823d9fe95ffedfc9daad

Base64:

4qq0