Unicode Finder

"⎶" U+23B6(BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET)

U+23B6
區塊名稱
Miscellaneous Technical
名稱
BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET

Programming

C
\u23B6
JavaScript
\u23B6
Java
\u23B6
Json
\u23B6
Python
\u23B6
Perl
\x{23B6}
PHP
\x{23B6}
Ruby
\u{23B6}
Rust
\u{23B6}
Go
\u23B6

Web

CSS
\0023B6
HtmlDecimal
⎶
HtmlHexadecimal
⎶
Url
%E2%8E%B6

Code

MD5
7ebd170d647d116880dc5323f49d9c39
Sha1
3d3347128c3f5aa636cf0cc2cc63021db1bfc043
Base64
4o62

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u23B6';
console.log(char);  // Output: ⎶

Java:

char c = '\u23B6';
System.out.println(c);  // Output: ⎶

JSON:

{"text": "\u23B6"}  // Value: ⎶

Python:

char = '\u23B6'
print(char)  # Output: ⎶

Perl:

my $char = "\x{23B6}";
print $char;  # Output: ⎶

PHP:

$char = "\x{23B6}";
echo $char;  // Output: ⎶

Ruby:

char = "\u{23B6}"
puts char  # Output: ⎶

Rust:

let c = '\u{23B6}';
println!("{}", c);  // Output: ⎶

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0023B6";  /* Display: ⎶ */
}

HTML Decimal:

<p>HTML decimal: &#9142;</p>  <!-- Display: ⎶ -->

HTML Hexadecimal:

<p>HTML hex: &#x23B6;</p>  <!-- Display: ⎶ -->

URL Encoding:

// ⎶ URL encoding
https://unicodefinder.com/search.php?query=%E2%8E%B6

Encodings

MD5:

7ebd170d647d116880dc5323f49d9c39

SHA1:

3d3347128c3f5aa636cf0cc2cc63021db1bfc043

Base64:

4o62