Unicode Finder

"虥" U+8665(CJK UNIFIED IDEOGRAPH-8665)

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

Programming

C
\u8665
JavaScript
\u8665
Java
\u8665
Json
\u8665
Python
\u8665
Perl
\x{8665}
PHP
\x{8665}
Ruby
\u{8665}
Rust
\u{8665}
Go
\u8665

Web

CSS
\008665
HtmlDecimal
虥
HtmlHexadecimal
虥
Url
%E8%99%A5

Code

MD5
67e1d61ede7994e879ed01b84d4432dc
Sha1
41dedb63e5adcd538ecc468bb22fefde66a94b38
Base64
6Jml

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8665';
console.log(char);  // Output: 虥

Java:

char c = '\u8665';
System.out.println(c);  // Output: 虥

JSON:

{"text": "\u8665"}  // Value: 虥

Python:

char = '\u8665'
print(char)  # Output: 虥

Perl:

my $char = "\x{8665}";
print $char;  # Output: 虥

PHP:

$char = "\x{8665}";
echo $char;  // Output: 虥

Ruby:

char = "\u{8665}"
puts char  # Output: 虥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008665";  /* Display: 虥 */
}

HTML Decimal:

<p>HTML decimal: &#34405;</p>  <!-- Display: 虥 -->

HTML Hexadecimal:

<p>HTML hex: &#x8665;</p>  <!-- Display: 虥 -->

URL Encoding:

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

Encodings

MD5:

67e1d61ede7994e879ed01b84d4432dc

SHA1:

41dedb63e5adcd538ecc468bb22fefde66a94b38

Base64:

6Jml