Unicode Finder

"芇" U+8287(CJK UNIFIED IDEOGRAPH-8287)

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

Programming

C
\u8287
JavaScript
\u8287
Java
\u8287
Json
\u8287
Python
\u8287
Perl
\x{8287}
PHP
\x{8287}
Ruby
\u{8287}
Rust
\u{8287}
Go
\u8287

Web

CSS
\008287
HtmlDecimal
芇
HtmlHexadecimal
芇
Url
%E8%8A%87

Code

MD5
d704ebb615032914b4e5da87a2f59647
Sha1
9d6ed2611cbcf9b1a2173856f8df559a0f7790b8
Base64
6IqH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8287';
console.log(char);  // Output: 芇

Java:

char c = '\u8287';
System.out.println(c);  // Output: 芇

JSON:

{"text": "\u8287"}  // Value: 芇

Python:

char = '\u8287'
print(char)  # Output: 芇

Perl:

my $char = "\x{8287}";
print $char;  # Output: 芇

PHP:

$char = "\x{8287}";
echo $char;  // Output: 芇

Ruby:

char = "\u{8287}"
puts char  # Output: 芇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008287";  /* Display: 芇 */
}

HTML Decimal:

<p>HTML decimal: &#33415;</p>  <!-- Display: 芇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8287;</p>  <!-- Display: 芇 -->

URL Encoding:

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

Encodings

MD5:

d704ebb615032914b4e5da87a2f59647

SHA1:

9d6ed2611cbcf9b1a2173856f8df559a0f7790b8

Base64:

6IqH