Unicode Finder

"荥" U+8365(CJK UNIFIED IDEOGRAPH-8365)

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

Programming

C
\u8365
JavaScript
\u8365
Java
\u8365
Json
\u8365
Python
\u8365
Perl
\x{8365}
PHP
\x{8365}
Ruby
\u{8365}
Rust
\u{8365}
Go
\u8365

Web

CSS
\008365
HtmlDecimal
荥
HtmlHexadecimal
荥
Url
%E8%8D%A5

Code

MD5
03ac65353b60123d7e00962fc5c1a24c
Sha1
e96d832f268ac91275ae354d58465cf077c682db
Base64
6I2l

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8365';
console.log(char);  // Output: 荥

Java:

char c = '\u8365';
System.out.println(c);  // Output: 荥

JSON:

{"text": "\u8365"}  // Value: 荥

Python:

char = '\u8365'
print(char)  # Output: 荥

Perl:

my $char = "\x{8365}";
print $char;  # Output: 荥

PHP:

$char = "\x{8365}";
echo $char;  // Output: 荥

Ruby:

char = "\u{8365}"
puts char  # Output: 荥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008365";  /* Display: 荥 */
}

HTML Decimal:

<p>HTML decimal: &#33637;</p>  <!-- Display: 荥 -->

HTML Hexadecimal:

<p>HTML hex: &#x8365;</p>  <!-- Display: 荥 -->

URL Encoding:

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

Encodings

MD5:

03ac65353b60123d7e00962fc5c1a24c

SHA1:

e96d832f268ac91275ae354d58465cf077c682db

Base64:

6I2l