Unicode Finder

"荰" U+8370(CJK UNIFIED IDEOGRAPH-8370)

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

Programming

C
\u8370
JavaScript
\u8370
Java
\u8370
Json
\u8370
Python
\u8370
Perl
\x{8370}
PHP
\x{8370}
Ruby
\u{8370}
Rust
\u{8370}
Go
\u8370

Web

CSS
\008370
HtmlDecimal
荰
HtmlHexadecimal
荰
Url
%E8%8D%B0

Code

MD5
f104c7b870d89187029fe1fd6ee10c38
Sha1
bdcf543868b623bef4ed9ba76a76e19e8af74ba1
Base64
6I2w

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8370';
console.log(char);  // Output: 荰

Java:

char c = '\u8370';
System.out.println(c);  // Output: 荰

JSON:

{"text": "\u8370"}  // Value: 荰

Python:

char = '\u8370'
print(char)  # Output: 荰

Perl:

my $char = "\x{8370}";
print $char;  # Output: 荰

PHP:

$char = "\x{8370}";
echo $char;  // Output: 荰

Ruby:

char = "\u{8370}"
puts char  # Output: 荰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008370";  /* Display: 荰 */
}

HTML Decimal:

<p>HTML decimal: &#33648;</p>  <!-- Display: 荰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8370;</p>  <!-- Display: 荰 -->

URL Encoding:

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

Encodings

MD5:

f104c7b870d89187029fe1fd6ee10c38

SHA1:

bdcf543868b623bef4ed9ba76a76e19e8af74ba1

Base64:

6I2w