Unicode Finder

"虡" U+8661(CJK UNIFIED IDEOGRAPH-8661)

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

Programming

C
\u8661
JavaScript
\u8661
Java
\u8661
Json
\u8661
Python
\u8661
Perl
\x{8661}
PHP
\x{8661}
Ruby
\u{8661}
Rust
\u{8661}
Go
\u8661

Web

CSS
\008661
HtmlDecimal
虡
HtmlHexadecimal
虡
Url
%E8%99%A1

Code

MD5
ea2ceeef06ccba3e71a6cc9a6b2af3b4
Sha1
54046dc4914a4ea0fd9472d7fdd521b60322436e
Base64
6Jmh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8661';
console.log(char);  // Output: 虡

Java:

char c = '\u8661';
System.out.println(c);  // Output: 虡

JSON:

{"text": "\u8661"}  // Value: 虡

Python:

char = '\u8661'
print(char)  # Output: 虡

Perl:

my $char = "\x{8661}";
print $char;  # Output: 虡

PHP:

$char = "\x{8661}";
echo $char;  // Output: 虡

Ruby:

char = "\u{8661}"
puts char  # Output: 虡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008661";  /* Display: 虡 */
}

HTML Decimal:

<p>HTML decimal: &#34401;</p>  <!-- Display: 虡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8661;</p>  <!-- Display: 虡 -->

URL Encoding:

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

Encodings

MD5:

ea2ceeef06ccba3e71a6cc9a6b2af3b4

SHA1:

54046dc4914a4ea0fd9472d7fdd521b60322436e

Base64:

6Jmh