Unicode Finder

"荶" U+8376(CJK UNIFIED IDEOGRAPH-8376)

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

Programming

C
\u8376
JavaScript
\u8376
Java
\u8376
Json
\u8376
Python
\u8376
Perl
\x{8376}
PHP
\x{8376}
Ruby
\u{8376}
Rust
\u{8376}
Go
\u8376

Web

CSS
\008376
HtmlDecimal
荶
HtmlHexadecimal
荶
Url
%E8%8D%B6

Code

MD5
4db0e74c6e81c6a2d5a500223169be45
Sha1
69e991d5e4255abd514ab79e40ee6d150ea0bc33
Base64
6I22

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8376';
console.log(char);  // Output: 荶

Java:

char c = '\u8376';
System.out.println(c);  // Output: 荶

JSON:

{"text": "\u8376"}  // Value: 荶

Python:

char = '\u8376'
print(char)  # Output: 荶

Perl:

my $char = "\x{8376}";
print $char;  # Output: 荶

PHP:

$char = "\x{8376}";
echo $char;  // Output: 荶

Ruby:

char = "\u{8376}"
puts char  # Output: 荶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008376";  /* Display: 荶 */
}

HTML Decimal:

<p>HTML decimal: &#33654;</p>  <!-- Display: 荶 -->

HTML Hexadecimal:

<p>HTML hex: &#x8376;</p>  <!-- Display: 荶 -->

URL Encoding:

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

Encodings

MD5:

4db0e74c6e81c6a2d5a500223169be45

SHA1:

69e991d5e4255abd514ab79e40ee6d150ea0bc33

Base64:

6I22