Unicode Finder

"虦" U+8666(CJK UNIFIED IDEOGRAPH-8666)

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

Programming

C
\u8666
JavaScript
\u8666
Java
\u8666
Json
\u8666
Python
\u8666
Perl
\x{8666}
PHP
\x{8666}
Ruby
\u{8666}
Rust
\u{8666}
Go
\u8666

Web

CSS
\008666
HtmlDecimal
虦
HtmlHexadecimal
虦
Url
%E8%99%A6

Code

MD5
06eda89b4208c6e98b200c02d4568996
Sha1
c2a5732c2af931355c3f5da8f515335218d4bd7b
Base64
6Jmm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8666';
console.log(char);  // Output: 虦

Java:

char c = '\u8666';
System.out.println(c);  // Output: 虦

JSON:

{"text": "\u8666"}  // Value: 虦

Python:

char = '\u8666'
print(char)  # Output: 虦

Perl:

my $char = "\x{8666}";
print $char;  # Output: 虦

PHP:

$char = "\x{8666}";
echo $char;  // Output: 虦

Ruby:

char = "\u{8666}"
puts char  # Output: 虦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008666";  /* Display: 虦 */
}

HTML Decimal:

<p>HTML decimal: &#34406;</p>  <!-- Display: 虦 -->

HTML Hexadecimal:

<p>HTML hex: &#x8666;</p>  <!-- Display: 虦 -->

URL Encoding:

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

Encodings

MD5:

06eda89b4208c6e98b200c02d4568996

SHA1:

c2a5732c2af931355c3f5da8f515335218d4bd7b

Base64:

6Jmm