Unicode Finder

"≲" U+2272(LESS-THAN OR EQUIVALENT TO)

U+2272
Block Name
Mathematical Operators
Name
LESS-THAN OR EQUIVALENT TO

Programming

C
\u2272
JavaScript
\u2272
Java
\u2272
Json
\u2272
Python
\u2272
Perl
\x{2272}
PHP
\x{2272}
Ruby
\u{2272}
Rust
\u{2272}
Go
\u2272

Web

CSS
\002272
HtmlDecimal
≲
HtmlHexadecimal
≲
Url
%E2%89%B2

Code

MD5
cae7a8965edcafb0cb256ecb19ea7a58
Sha1
e956e66968a0db5bf3e6cccef3e874d6679f7b04
Base64
4omy

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2272';
console.log(char);  // Output: ≲

Java:

char c = '\u2272';
System.out.println(c);  // Output: ≲

JSON:

{"text": "\u2272"}  // Value: ≲

Python:

char = '\u2272'
print(char)  # Output: ≲

Perl:

my $char = "\x{2272}";
print $char;  # Output: ≲

PHP:

$char = "\x{2272}";
echo $char;  // Output: ≲

Ruby:

char = "\u{2272}"
puts char  # Output: ≲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002272";  /* Display: ≲ */
}

HTML Decimal:

<p>HTML decimal: &#8818;</p>  <!-- Display: ≲ -->

HTML Hexadecimal:

<p>HTML hex: &#x2272;</p>  <!-- Display: ≲ -->

URL Encoding:

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

Encodings

MD5:

cae7a8965edcafb0cb256ecb19ea7a58

SHA1:

e956e66968a0db5bf3e6cccef3e874d6679f7b04

Base64:

4omy