Unicode Finder

"虂" U+8642(CJK UNIFIED IDEOGRAPH-8642)

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

Programming

C
\u8642
JavaScript
\u8642
Java
\u8642
Json
\u8642
Python
\u8642
Perl
\x{8642}
PHP
\x{8642}
Ruby
\u{8642}
Rust
\u{8642}
Go
\u8642

Web

CSS
\008642
HtmlDecimal
虂
HtmlHexadecimal
虂
Url
%E8%99%82

Code

MD5
17ca417df755cfbd2dd24e39d0dfc036
Sha1
413e2e8dfc938b5c91de2557fddc09fea83c71af
Base64
6JmC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8642';
console.log(char);  // Output: 虂

Java:

char c = '\u8642';
System.out.println(c);  // Output: 虂

JSON:

{"text": "\u8642"}  // Value: 虂

Python:

char = '\u8642'
print(char)  # Output: 虂

Perl:

my $char = "\x{8642}";
print $char;  # Output: 虂

PHP:

$char = "\x{8642}";
echo $char;  // Output: 虂

Ruby:

char = "\u{8642}"
puts char  # Output: 虂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008642";  /* Display: 虂 */
}

HTML Decimal:

<p>HTML decimal: &#34370;</p>  <!-- Display: 虂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8642;</p>  <!-- Display: 虂 -->

URL Encoding:

// 虂 URL encoding
https://unicodefinder.com/search.php?query=%E8%99%82

Encodings

MD5:

17ca417df755cfbd2dd24e39d0dfc036

SHA1:

413e2e8dfc938b5c91de2557fddc09fea83c71af

Base64:

6JmC