Unicode Finder

"虌" U+864C(CJK UNIFIED IDEOGRAPH-864C)

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

Programming

C
\u864C
JavaScript
\u864C
Java
\u864C
Json
\u864C
Python
\u864C
Perl
\x{864C}
PHP
\x{864C}
Ruby
\u{864C}
Rust
\u{864C}
Go
\u864C

Web

CSS
\00864C
HtmlDecimal
虌
HtmlHexadecimal
虌
Url
%E8%99%8C

Code

MD5
63af5cd5a8324e6c34f0218893ec7863
Sha1
18ec4d6bf66970ac8af05d3429ef6a67f05ae490
Base64
6JmM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u864C';
console.log(char);  // Output: 虌

Java:

char c = '\u864C';
System.out.println(c);  // Output: 虌

JSON:

{"text": "\u864C"}  // Value: 虌

Python:

char = '\u864C'
print(char)  # Output: 虌

Perl:

my $char = "\x{864C}";
print $char;  # Output: 虌

PHP:

$char = "\x{864C}";
echo $char;  // Output: 虌

Ruby:

char = "\u{864C}"
puts char  # Output: 虌

Rust:

let c = '\u{864C}';
println!("{}", c);  // Output: 虌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00864C";  /* Display: 虌 */
}

HTML Decimal:

<p>HTML decimal: &#34380;</p>  <!-- Display: 虌 -->

HTML Hexadecimal:

<p>HTML hex: &#x864C;</p>  <!-- Display: 虌 -->

URL Encoding:

// 虌 URL encoding
https://unicodefinder.com/search.php?query=%E8%99%8C

Encodings

MD5:

63af5cd5a8324e6c34f0218893ec7863

SHA1:

18ec4d6bf66970ac8af05d3429ef6a67f05ae490

Base64:

6JmM