Unicode Finder

"⪼" U+2ABC(DOUBLE SUCCEEDS)

U+2ABC
Block Name
Supplemental Mathematical Operators
Name
DOUBLE SUCCEEDS

Programming

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

Web

CSS
\002ABC
HtmlDecimal
⪼
HtmlHexadecimal
⪼
Url
%E2%AA%BC

Code

MD5
1eb5f95e363571144256cc7ead0f2bdf
Sha1
3242d8fef0d0ac9b8a9db1ae2946bde406e6f382
Base64
4qq8

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2ABC';
console.log(char);  // Output: ⪼

Java:

char c = '\u2ABC';
System.out.println(c);  // Output: ⪼

JSON:

{"text": "\u2ABC"}  // Value: ⪼

Python:

char = '\u2ABC'
print(char)  # Output: ⪼

Perl:

my $char = "\x{2ABC}";
print $char;  # Output: ⪼

PHP:

$char = "\x{2ABC}";
echo $char;  // Output: ⪼

Ruby:

char = "\u{2ABC}"
puts char  # Output: ⪼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#10940;</p>  <!-- Display: ⪼ -->

HTML Hexadecimal:

<p>HTML hex: &#x2ABC;</p>  <!-- Display: ⪼ -->

URL Encoding:

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

Encodings

MD5:

1eb5f95e363571144256cc7ead0f2bdf

SHA1:

3242d8fef0d0ac9b8a9db1ae2946bde406e6f382

Base64:

4qq8