Unicode Finder

"⎛" U+239B(LEFT PARENTHESIS UPPER HOOK)

U+239B
區塊名稱
Miscellaneous Technical
名稱
LEFT PARENTHESIS UPPER HOOK

Programming

C
\u239B
JavaScript
\u239B
Java
\u239B
Json
\u239B
Python
\u239B
Perl
\x{239B}
PHP
\x{239B}
Ruby
\u{239B}
Rust
\u{239B}
Go
\u239B

Web

CSS
\00239B
HtmlDecimal
⎛
HtmlHexadecimal
⎛
Url
%E2%8E%9B

Code

MD5
ddbc716a82bc00f1b5e2cd10c665b208
Sha1
ac6117a7814e1df6015ca492ec69a7d5782c4c06
Base64
4o6b

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u239B';
console.log(char);  // Output: ⎛

Java:

char c = '\u239B';
System.out.println(c);  // Output: ⎛

JSON:

{"text": "\u239B"}  // Value: ⎛

Python:

char = '\u239B'
print(char)  # Output: ⎛

Perl:

my $char = "\x{239B}";
print $char;  # Output: ⎛

PHP:

$char = "\x{239B}";
echo $char;  // Output: ⎛

Ruby:

char = "\u{239B}"
puts char  # Output: ⎛

Rust:

let c = '\u{239B}';
println!("{}", c);  // Output: ⎛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00239B";  /* Display: ⎛ */
}

HTML Decimal:

<p>HTML decimal: &#9115;</p>  <!-- Display: ⎛ -->

HTML Hexadecimal:

<p>HTML hex: &#x239B;</p>  <!-- Display: ⎛ -->

URL Encoding:

// ⎛ URL encoding
https://unicodefinder.com/search.php?query=%E2%8E%9B

Encodings

MD5:

ddbc716a82bc00f1b5e2cd10c665b208

SHA1:

ac6117a7814e1df6015ca492ec69a7d5782c4c06

Base64:

4o6b