Unicode Finder

"〈" U+3008(LEFT ANGLE BRACKET)

U+3008
区块名称
CJK Symbols and Punctuation
名称
LEFT ANGLE BRACKET

Programming

C
\u3008
JavaScript
\u3008
Java
\u3008
Json
\u3008
Python
\u3008
Perl
\x{3008}
PHP
\x{3008}
Ruby
\u{3008}
Rust
\u{3008}
Go
\u3008

Web

CSS
\003008
HtmlDecimal
〈
HtmlHexadecimal
〈
Url
%E3%80%88

Code

MD5
568799bee01216c03ccfe51aca1cd5d9
Sha1
9fb248dfd4772d63103e184fcfde2f029262e6b1
Base64
44CI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u3008';
console.log(char);  // Output: 〈

Java:

char c = '\u3008';
System.out.println(c);  // Output: 〈

JSON:

{"text": "\u3008"}  // Value: 〈

Python:

char = '\u3008'
print(char)  # Output: 〈

Perl:

my $char = "\x{3008}";
print $char;  # Output: 〈

PHP:

$char = "\x{3008}";
echo $char;  // Output: 〈

Ruby:

char = "\u{3008}"
puts char  # Output: 〈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\003008";  /* Display: 〈 */
}

HTML Decimal:

<p>HTML decimal: &#12296;</p>  <!-- Display: 〈 -->

HTML Hexadecimal:

<p>HTML hex: &#x3008;</p>  <!-- Display: 〈 -->

URL Encoding:

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

Encodings

MD5:

568799bee01216c03ccfe51aca1cd5d9

SHA1:

9fb248dfd4772d63103e184fcfde2f029262e6b1

Base64:

44CI