Unicode Finder

"荖" U+8356(CJK UNIFIED IDEOGRAPH-8356)

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

Programming

C
\u8356
JavaScript
\u8356
Java
\u8356
Json
\u8356
Python
\u8356
Perl
\x{8356}
PHP
\x{8356}
Ruby
\u{8356}
Rust
\u{8356}
Go
\u8356

Web

CSS
\008356
HtmlDecimal
荖
HtmlHexadecimal
荖
Url
%E8%8D%96

Code

MD5
ae74b7e2cd56b329d9972577d54ba601
Sha1
068dddfb7149c60a5184d8d4819c8dc667ef71e9
Base64
6I2W

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8356';
console.log(char);  // Output: 荖

Java:

char c = '\u8356';
System.out.println(c);  // Output: 荖

JSON:

{"text": "\u8356"}  // Value: 荖

Python:

char = '\u8356'
print(char)  # Output: 荖

Perl:

my $char = "\x{8356}";
print $char;  # Output: 荖

PHP:

$char = "\x{8356}";
echo $char;  // Output: 荖

Ruby:

char = "\u{8356}"
puts char  # Output: 荖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008356";  /* Display: 荖 */
}

HTML Decimal:

<p>HTML decimal: &#33622;</p>  <!-- Display: 荖 -->

HTML Hexadecimal:

<p>HTML hex: &#x8356;</p>  <!-- Display: 荖 -->

URL Encoding:

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

Encodings

MD5:

ae74b7e2cd56b329d9972577d54ba601

SHA1:

068dddfb7149c60a5184d8d4819c8dc667ef71e9

Base64:

6I2W