Unicode Finder

"莅" U+8385(CJK UNIFIED IDEOGRAPH-8385)

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

Programming

C
\u8385
JavaScript
\u8385
Java
\u8385
Json
\u8385
Python
\u8385
Perl
\x{8385}
PHP
\x{8385}
Ruby
\u{8385}
Rust
\u{8385}
Go
\u8385

Web

CSS
\008385
HtmlDecimal
莅
HtmlHexadecimal
莅
Url
%E8%8E%85

Code

MD5
38156e9cd7bc88b24e0c94533fdd4efa
Sha1
35b85591ee0606699d2f9ea1b922f959d3b5f904
Base64
6I6F

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8385';
console.log(char);  // Output: 莅

Java:

char c = '\u8385';
System.out.println(c);  // Output: 莅

JSON:

{"text": "\u8385"}  // Value: 莅

Python:

char = '\u8385'
print(char)  # Output: 莅

Perl:

my $char = "\x{8385}";
print $char;  # Output: 莅

PHP:

$char = "\x{8385}";
echo $char;  // Output: 莅

Ruby:

char = "\u{8385}"
puts char  # Output: 莅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008385";  /* Display: 莅 */
}

HTML Decimal:

<p>HTML decimal: &#33669;</p>  <!-- Display: 莅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8385;</p>  <!-- Display: 莅 -->

URL Encoding:

// 莅 URL encoding
https://unicodefinder.com/search.php?query=%E8%8E%85

Encodings

MD5:

38156e9cd7bc88b24e0c94533fdd4efa

SHA1:

35b85591ee0606699d2f9ea1b922f959d3b5f904

Base64:

6I6F