Unicode Finder

"荑" U+8351(CJK UNIFIED IDEOGRAPH-8351)

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

Programming

C
\u8351
JavaScript
\u8351
Java
\u8351
Json
\u8351
Python
\u8351
Perl
\x{8351}
PHP
\x{8351}
Ruby
\u{8351}
Rust
\u{8351}
Go
\u8351

Web

CSS
\008351
HtmlDecimal
荑
HtmlHexadecimal
荑
Url
%E8%8D%91

Code

MD5
0e7d35c539bc629ea4ff60c3cbec2fc9
Sha1
6693f6f4ec371d55597a0906962014afb0951650
Base64
6I2R

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8351';
console.log(char);  // Output: 荑

Java:

char c = '\u8351';
System.out.println(c);  // Output: 荑

JSON:

{"text": "\u8351"}  // Value: 荑

Python:

char = '\u8351'
print(char)  # Output: 荑

Perl:

my $char = "\x{8351}";
print $char;  # Output: 荑

PHP:

$char = "\x{8351}";
echo $char;  // Output: 荑

Ruby:

char = "\u{8351}"
puts char  # Output: 荑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008351";  /* Display: 荑 */
}

HTML Decimal:

<p>HTML decimal: &#33617;</p>  <!-- Display: 荑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8351;</p>  <!-- Display: 荑 -->

URL Encoding:

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

Encodings

MD5:

0e7d35c539bc629ea4ff60c3cbec2fc9

SHA1:

6693f6f4ec371d55597a0906962014afb0951650

Base64:

6I2R