Unicode Finder

"虖" U+8656(CJK UNIFIED IDEOGRAPH-8656)

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

Programming

C
\u8656
JavaScript
\u8656
Java
\u8656
Json
\u8656
Python
\u8656
Perl
\x{8656}
PHP
\x{8656}
Ruby
\u{8656}
Rust
\u{8656}
Go
\u8656

Web

CSS
\008656
HtmlDecimal
虖
HtmlHexadecimal
虖
Url
%E8%99%96

Code

MD5
454e7be0ed4fcfe344ce2e0f13a515c6
Sha1
dc9b48de475dd3be997d476cda8e61c364428c82
Base64
6JmW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8656';
console.log(char);  // Output: 虖

Java:

char c = '\u8656';
System.out.println(c);  // Output: 虖

JSON:

{"text": "\u8656"}  // Value: 虖

Python:

char = '\u8656'
print(char)  # Output: 虖

Perl:

my $char = "\x{8656}";
print $char;  # Output: 虖

PHP:

$char = "\x{8656}";
echo $char;  // Output: 虖

Ruby:

char = "\u{8656}"
puts char  # Output: 虖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008656";  /* Display: 虖 */
}

HTML Decimal:

<p>HTML decimal: &#34390;</p>  <!-- Display: 虖 -->

HTML Hexadecimal:

<p>HTML hex: &#x8656;</p>  <!-- Display: 虖 -->

URL Encoding:

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

Encodings

MD5:

454e7be0ed4fcfe344ce2e0f13a515c6

SHA1:

dc9b48de475dd3be997d476cda8e61c364428c82

Base64:

6JmW