Unicode Finder

"⪛" U+2A9B(DOUBLE-LINE SLANTED EQUAL TO OR LESS-THAN)

U+2A9B
Block Name
Supplemental Mathematical Operators
Name
DOUBLE-LINE SLANTED EQUAL TO OR LESS-THAN

Programming

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

Web

CSS
\002A9B
HtmlDecimal
⪛
HtmlHexadecimal
⪛
Url
%E2%AA%9B

Code

MD5
dedb93e4780e7a6b12ae5dd1455ae6de
Sha1
ad3d8380ba9d285497b62fe4d8c89cec085c19af
Base64
4qqb

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2A9B';
console.log(char);  // Output: ⪛

Java:

char c = '\u2A9B';
System.out.println(c);  // Output: ⪛

JSON:

{"text": "\u2A9B"}  // Value: ⪛

Python:

char = '\u2A9B'
print(char)  # Output: ⪛

Perl:

my $char = "\x{2A9B}";
print $char;  # Output: ⪛

PHP:

$char = "\x{2A9B}";
echo $char;  // Output: ⪛

Ruby:

char = "\u{2A9B}"
puts char  # Output: ⪛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10907;</p>  <!-- Display: ⪛ -->

HTML Hexadecimal:

<p>HTML hex: &#x2A9B;</p>  <!-- Display: ⪛ -->

URL Encoding:

// ⪛ URL encoding
https://unicodefinder.com/search.php?query=%E2%AA%9B

Encodings

MD5:

dedb93e4780e7a6b12ae5dd1455ae6de

SHA1:

ad3d8380ba9d285497b62fe4d8c89cec085c19af

Base64:

4qqb