Unicode Finder

"】" U+3011(RIGHT BLACK LENTICULAR BRACKET)

U+3011
区块名称
CJK Symbols and Punctuation
名称
RIGHT BLACK LENTICULAR BRACKET

Programming

C
\u3011
JavaScript
\u3011
Java
\u3011
Json
\u3011
Python
\u3011
Perl
\x{3011}
PHP
\x{3011}
Ruby
\u{3011}
Rust
\u{3011}
Go
\u3011

Web

CSS
\003011
HtmlDecimal
】
HtmlHexadecimal
】
Url
%E3%80%91

Code

MD5
5942e7ebd051339cf5f314bf392f0d52
Sha1
f3d86aa04cad7fc7ff54b12b2417b979e0a366b2
Base64
44CR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u3011';
console.log(char);  // Output: 】

Java:

char c = '\u3011';
System.out.println(c);  // Output: 】

JSON:

{"text": "\u3011"}  // Value: 】

Python:

char = '\u3011'
print(char)  # Output: 】

Perl:

my $char = "\x{3011}";
print $char;  # Output: 】

PHP:

$char = "\x{3011}";
echo $char;  // Output: 】

Ruby:

char = "\u{3011}"
puts char  # Output: 】

Rust:

let c = '\u{3011}';
println!("{}", c);  // Output: 】

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\003011";  /* Display: 】 */
}

HTML Decimal:

<p>HTML decimal: &#12305;</p>  <!-- Display: 】 -->

HTML Hexadecimal:

<p>HTML hex: &#x3011;</p>  <!-- Display: 】 -->

URL Encoding:

// 】 URL encoding
https://unicodefinder.com/search.php?query=%E3%80%91

Encodings

MD5:

5942e7ebd051339cf5f314bf392f0d52

SHA1:

f3d86aa04cad7fc7ff54b12b2417b979e0a366b2

Base64:

44CR