Unicode Finder

"茖" U+8316(CJK UNIFIED IDEOGRAPH-8316)

U+8316
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8316

Programming

C
\u8316
JavaScript
\u8316
Java
\u8316
Json
\u8316
Python
\u8316
Perl
\x{8316}
PHP
\x{8316}
Ruby
\u{8316}
Rust
\u{8316}
Go
\u8316

Web

CSS
\008316
HtmlDecimal
茖
HtmlHexadecimal
茖
Url
%E8%8C%96

Code

MD5
6f97a5303c7f94c8e47ec79bcdd6e7d3
Sha1
0dc80e3836741eefe83f5173ee5a71f15fc66f79
Base64
6IyW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8316';
console.log(char);  // Output: 茖

Java:

char c = '\u8316';
System.out.println(c);  // Output: 茖

JSON:

{"text": "\u8316"}  // Value: 茖

Python:

char = '\u8316'
print(char)  # Output: 茖

Perl:

my $char = "\x{8316}";
print $char;  # Output: 茖

PHP:

$char = "\x{8316}";
echo $char;  // Output: 茖

Ruby:

char = "\u{8316}"
puts char  # Output: 茖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008316";  /* Display: 茖 */
}

HTML Decimal:

<p>HTML decimal: &#33558;</p>  <!-- Display: 茖 -->

HTML Hexadecimal:

<p>HTML hex: &#x8316;</p>  <!-- Display: 茖 -->

URL Encoding:

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

Encodings

MD5:

6f97a5303c7f94c8e47ec79bcdd6e7d3

SHA1:

0dc80e3836741eefe83f5173ee5a71f15fc66f79

Base64:

6IyW