Unicode Finder

"⪿" U+2ABF(SUBSET WITH PLUS SIGN BELOW)

⪿
U+2ABF
Block Name
Supplemental Mathematical Operators
Name
SUBSET WITH PLUS SIGN BELOW

Programming

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

Web

CSS
\002ABF
HtmlDecimal
⪿
HtmlHexadecimal
⪿
Url
%E2%AA%BF

Code

MD5
75529a1526a1635ff812ab9efbf55ecf
Sha1
9f2a3b10fb987190cbd9e64ffcffcbcf061050d1
Base64
4qq/

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2ABF';
console.log(char);  // Output: ⪿

Java:

char c = '\u2ABF';
System.out.println(c);  // Output: ⪿

JSON:

{"text": "\u2ABF"}  // Value: ⪿

Python:

char = '\u2ABF'
print(char)  # Output: ⪿

Perl:

my $char = "\x{2ABF}";
print $char;  # Output: ⪿

PHP:

$char = "\x{2ABF}";
echo $char;  // Output: ⪿

Ruby:

char = "\u{2ABF}"
puts char  # Output: ⪿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10943;</p>  <!-- Display: ⪿ -->

HTML Hexadecimal:

<p>HTML hex: &#x2ABF;</p>  <!-- Display: ⪿ -->

URL Encoding:

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

Encodings

MD5:

75529a1526a1635ff812ab9efbf55ecf

SHA1:

9f2a3b10fb987190cbd9e64ffcffcbcf061050d1

Base64:

4qq/