Unicode Finder

"荴" U+8374(CJK UNIFIED IDEOGRAPH-8374)

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

Programming

C
\u8374
JavaScript
\u8374
Java
\u8374
Json
\u8374
Python
\u8374
Perl
\x{8374}
PHP
\x{8374}
Ruby
\u{8374}
Rust
\u{8374}
Go
\u8374

Web

CSS
\008374
HtmlDecimal
荴
HtmlHexadecimal
荴
Url
%E8%8D%B4

Code

MD5
23743d393d533b6ce3302aba5fa7d745
Sha1
6126530d21ce884fe9b8e6ca2f616ef828aa3118
Base64
6I20

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8374';
console.log(char);  // Output: 荴

Java:

char c = '\u8374';
System.out.println(c);  // Output: 荴

JSON:

{"text": "\u8374"}  // Value: 荴

Python:

char = '\u8374'
print(char)  # Output: 荴

Perl:

my $char = "\x{8374}";
print $char;  # Output: 荴

PHP:

$char = "\x{8374}";
echo $char;  // Output: 荴

Ruby:

char = "\u{8374}"
puts char  # Output: 荴

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008374";  /* Display: 荴 */
}

HTML Decimal:

<p>HTML decimal: &#33652;</p>  <!-- Display: 荴 -->

HTML Hexadecimal:

<p>HTML hex: &#x8374;</p>  <!-- Display: 荴 -->

URL Encoding:

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

Encodings

MD5:

23743d393d533b6ce3302aba5fa7d745

SHA1:

6126530d21ce884fe9b8e6ca2f616ef828aa3118

Base64:

6I20