Unicode Finder

"᪾" U+1ABE(COMBINING PARENTHESES OVERLAY)

U+1ABE
区块名称
Unknown Block
名称
COMBINING PARENTHESES OVERLAY

Programming

C
\u1ABE
JavaScript
\u1ABE
Java
\u1ABE
Json
\u1ABE
Python
\u1ABE
Perl
\x{1ABE}
PHP
\x{1ABE}
Ruby
\u{1ABE}
Rust
\u{1ABE}
Go
\u1ABE

Web

CSS
\001ABE
HtmlDecimal
᪾
HtmlHexadecimal
᪾
Url
%E1%AA%BE

Code

MD5
06274bdeabd4c90d18899b6d0d81bcb2
Sha1
ceaaa4615fa0ecfdad7813ce92dd82c767e6177c
Base64
4aq+

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u1ABE';
console.log(char);  // Output: ᪾

Java:

char c = '\u1ABE';
System.out.println(c);  // Output: ᪾

JSON:

{"text": "\u1ABE"}  // Value: ᪾

Python:

char = '\u1ABE'
print(char)  # Output: ᪾

Perl:

my $char = "\x{1ABE}";
print $char;  # Output: ᪾

PHP:

$char = "\x{1ABE}";
echo $char;  // Output: ᪾

Ruby:

char = "\u{1ABE}"
puts char  # Output: ᪾

Rust:

let c = '\u{1ABE}';
println!("{}", c);  // Output: ᪾

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001ABE";  /* Display: ᪾ */
}

HTML Decimal:

<p>HTML decimal: &#6846;</p>  <!-- Display: ᪾ -->

HTML Hexadecimal:

<p>HTML hex: &#x1ABE;</p>  <!-- Display: ᪾ -->

URL Encoding:

// ᪾ URL encoding
https://unicodefinder.com/search.php?query=%E1%AA%BE

Encodings

MD5:

06274bdeabd4c90d18899b6d0d81bcb2

SHA1:

ceaaa4615fa0ecfdad7813ce92dd82c767e6177c

Base64:

4aq+