Unicode Finder

"【" U+3010(LEFT BLACK LENTICULAR BRACKET)

U+3010
Nama Blok
CJK Symbols and Punctuation
Nama
LEFT BLACK LENTICULAR BRACKET

Programming

C
\u3010
JavaScript
\u3010
Java
\u3010
Json
\u3010
Python
\u3010
Perl
\x{3010}
PHP
\x{3010}
Ruby
\u{3010}
Rust
\u{3010}
Go
\u3010

Web

CSS
\003010
HtmlDecimal
【
HtmlHexadecimal
【
Url
%E3%80%90

Code

MD5
0341329b1dfdf11541d2375d20537a22
Sha1
c9157cedda80ae56112b069bc9be8c3de3f0da43
Base64
44CQ

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u3010';
console.log(char);  // Output: 【

Java:

char c = '\u3010';
System.out.println(c);  // Output: 【

JSON:

{"text": "\u3010"}  // Value: 【

Python:

char = '\u3010'
print(char)  # Output: 【

Perl:

my $char = "\x{3010}";
print $char;  # Output: 【

PHP:

$char = "\x{3010}";
echo $char;  // Output: 【

Ruby:

char = "\u{3010}"
puts char  # Output: 【

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\003010";  /* Display: 【 */
}

HTML Decimal:

<p>HTML decimal: &#12304;</p>  <!-- Display: 【 -->

HTML Hexadecimal:

<p>HTML hex: &#x3010;</p>  <!-- Display: 【 -->

URL Encoding:

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

Encodings

MD5:

0341329b1dfdf11541d2375d20537a22

SHA1:

c9157cedda80ae56112b069bc9be8c3de3f0da43

Base64:

44CQ