Unicode Finder

"⪷" U+2AB7(PRECEDES ABOVE ALMOST EQUAL TO)

U+2AB7
Block Name
Supplemental Mathematical Operators
Name
PRECEDES ABOVE ALMOST EQUAL TO

Programming

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

Web

CSS
\002AB7
HtmlDecimal
⪷
HtmlHexadecimal
⪷
Url
%E2%AA%B7

Code

MD5
ff622395e4b941f93999957fa4b010d4
Sha1
a60949363495e3223e9479751703ea03fe9978f7
Base64
4qq3

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AB7';
console.log(char);  // Output: ⪷

Java:

char c = '\u2AB7';
System.out.println(c);  // Output: ⪷

JSON:

{"text": "\u2AB7"}  // Value: ⪷

Python:

char = '\u2AB7'
print(char)  # Output: ⪷

Perl:

my $char = "\x{2AB7}";
print $char;  # Output: ⪷

PHP:

$char = "\x{2AB7}";
echo $char;  // Output: ⪷

Ruby:

char = "\u{2AB7}"
puts char  # Output: ⪷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10935;</p>  <!-- Display: ⪷ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AB7;</p>  <!-- Display: ⪷ -->

URL Encoding:

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

Encodings

MD5:

ff622395e4b941f93999957fa4b010d4

SHA1:

a60949363495e3223e9479751703ea03fe9978f7

Base64:

4qq3