Unicode Finder

"⪱" U+2AB1(PRECEDES ABOVE SINGLE-LINE NOT EQUAL TO)

U+2AB1
Block Name
Supplemental Mathematical Operators
Name
PRECEDES ABOVE SINGLE-LINE NOT EQUAL TO

Programming

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

Web

CSS
\002AB1
HtmlDecimal
⪱
HtmlHexadecimal
⪱
Url
%E2%AA%B1

Code

MD5
b9de83c613ebd4e673289d0560838b93
Sha1
5e4d61e8097783bcd19841479ba46b7460b04dd1
Base64
4qqx

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2AB1';
console.log(char);  // Output: ⪱

Java:

char c = '\u2AB1';
System.out.println(c);  // Output: ⪱

JSON:

{"text": "\u2AB1"}  // Value: ⪱

Python:

char = '\u2AB1'
print(char)  # Output: ⪱

Perl:

my $char = "\x{2AB1}";
print $char;  # Output: ⪱

PHP:

$char = "\x{2AB1}";
echo $char;  // Output: ⪱

Ruby:

char = "\u{2AB1}"
puts char  # Output: ⪱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10929;</p>  <!-- Display: ⪱ -->

HTML Hexadecimal:

<p>HTML hex: &#x2AB1;</p>  <!-- Display: ⪱ -->

URL Encoding:

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

Encodings

MD5:

b9de83c613ebd4e673289d0560838b93

SHA1:

5e4d61e8097783bcd19841479ba46b7460b04dd1

Base64:

4qqx