Unicode Finder

"茇" U+8307(CJK UNIFIED IDEOGRAPH-8307)

U+8307
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8307

Programming

C
\u8307
JavaScript
\u8307
Java
\u8307
Json
\u8307
Python
\u8307
Perl
\x{8307}
PHP
\x{8307}
Ruby
\u{8307}
Rust
\u{8307}
Go
\u8307

Web

CSS
\008307
HtmlDecimal
茇
HtmlHexadecimal
茇
Url
%E8%8C%87

Code

MD5
2a90f8f72b4e4cfc1ef9c9f8c70abd23
Sha1
57d2145716e8c86468b3fab011e66de0d56875e2
Base64
6IyH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8307';
console.log(char);  // Output: 茇

Java:

char c = '\u8307';
System.out.println(c);  // Output: 茇

JSON:

{"text": "\u8307"}  // Value: 茇

Python:

char = '\u8307'
print(char)  # Output: 茇

Perl:

my $char = "\x{8307}";
print $char;  # Output: 茇

PHP:

$char = "\x{8307}";
echo $char;  // Output: 茇

Ruby:

char = "\u{8307}"
puts char  # Output: 茇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008307";  /* Display: 茇 */
}

HTML Decimal:

<p>HTML decimal: &#33543;</p>  <!-- Display: 茇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8307;</p>  <!-- Display: 茇 -->

URL Encoding:

// 茇 URL encoding
https://unicodefinder.com/search.php?query=%E8%8C%87

Encodings

MD5:

2a90f8f72b4e4cfc1ef9c9f8c70abd23

SHA1:

57d2145716e8c86468b3fab011e66de0d56875e2

Base64:

6IyH