Unicode Finder

"茧" U+8327(CJK UNIFIED IDEOGRAPH-8327)

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

Programming

C
\u8327
JavaScript
\u8327
Java
\u8327
Json
\u8327
Python
\u8327
Perl
\x{8327}
PHP
\x{8327}
Ruby
\u{8327}
Rust
\u{8327}
Go
\u8327

Web

CSS
\008327
HtmlDecimal
茧
HtmlHexadecimal
茧
Url
%E8%8C%A7

Code

MD5
7a1d37bf69578a580ba75886ade3173e
Sha1
90d8d0abb00137df5e6f1db2db2035b45efe386a
Base64
6Iyn

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8327';
console.log(char);  // Output: 茧

Java:

char c = '\u8327';
System.out.println(c);  // Output: 茧

JSON:

{"text": "\u8327"}  // Value: 茧

Python:

char = '\u8327'
print(char)  # Output: 茧

Perl:

my $char = "\x{8327}";
print $char;  # Output: 茧

PHP:

$char = "\x{8327}";
echo $char;  // Output: 茧

Ruby:

char = "\u{8327}"
puts char  # Output: 茧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008327";  /* Display: 茧 */
}

HTML Decimal:

<p>HTML decimal: &#33575;</p>  <!-- Display: 茧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8327;</p>  <!-- Display: 茧 -->

URL Encoding:

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

Encodings

MD5:

7a1d37bf69578a580ba75886ade3173e

SHA1:

90d8d0abb00137df5e6f1db2db2035b45efe386a

Base64:

6Iyn