Unicode Finder

"茔" U+8314(CJK UNIFIED IDEOGRAPH-8314)

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

Programming

C
\u8314
JavaScript
\u8314
Java
\u8314
Json
\u8314
Python
\u8314
Perl
\x{8314}
PHP
\x{8314}
Ruby
\u{8314}
Rust
\u{8314}
Go
\u8314

Web

CSS
\008314
HtmlDecimal
茔
HtmlHexadecimal
茔
Url
%E8%8C%94

Code

MD5
df96f8e84ecc1596fd4333dbb15dddc6
Sha1
8d1a6136bb5a2df9f1f9501d0f4fa0b2105ebf33
Base64
6IyU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8314';
console.log(char);  // Output: 茔

Java:

char c = '\u8314';
System.out.println(c);  // Output: 茔

JSON:

{"text": "\u8314"}  // Value: 茔

Python:

char = '\u8314'
print(char)  # Output: 茔

Perl:

my $char = "\x{8314}";
print $char;  # Output: 茔

PHP:

$char = "\x{8314}";
echo $char;  // Output: 茔

Ruby:

char = "\u{8314}"
puts char  # Output: 茔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008314";  /* Display: 茔 */
}

HTML Decimal:

<p>HTML decimal: &#33556;</p>  <!-- Display: 茔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8314;</p>  <!-- Display: 茔 -->

URL Encoding:

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

Encodings

MD5:

df96f8e84ecc1596fd4333dbb15dddc6

SHA1:

8d1a6136bb5a2df9f1f9501d0f4fa0b2105ebf33

Base64:

6IyU