Unicode Finder

"≷" U+2277(GREATER-THAN OR LESS-THAN)

U+2277
Block Name
Mathematical Operators
Name
GREATER-THAN OR LESS-THAN

Programming

C
\u2277
JavaScript
\u2277
Java
\u2277
Json
\u2277
Python
\u2277
Perl
\x{2277}
PHP
\x{2277}
Ruby
\u{2277}
Rust
\u{2277}
Go
\u2277

Web

CSS
\002277
HtmlDecimal
≷
HtmlHexadecimal
≷
Url
%E2%89%B7

Code

MD5
1e410e637fa5743cf9385afa39b0420d
Sha1
b7a48a9d7fb8fc05449679f59f357e9ff9fa6786
Base64
4om3

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2277';
console.log(char);  // Output: ≷

Java:

char c = '\u2277';
System.out.println(c);  // Output: ≷

JSON:

{"text": "\u2277"}  // Value: ≷

Python:

char = '\u2277'
print(char)  # Output: ≷

Perl:

my $char = "\x{2277}";
print $char;  # Output: ≷

PHP:

$char = "\x{2277}";
echo $char;  // Output: ≷

Ruby:

char = "\u{2277}"
puts char  # Output: ≷

Rust:

let c = '\u{2277}';
println!("{}", c);  // Output: ≷

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002277";  /* Display: ≷ */
}

HTML Decimal:

<p>HTML decimal: &#8823;</p>  <!-- Display: ≷ -->

HTML Hexadecimal:

<p>HTML hex: &#x2277;</p>  <!-- Display: ≷ -->

URL Encoding:

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

Encodings

MD5:

1e410e637fa5743cf9385afa39b0420d

SHA1:

b7a48a9d7fb8fc05449679f59f357e9ff9fa6786

Base64:

4om3