Unicode Finder

"虙" U+8659(CJK UNIFIED IDEOGRAPH-8659)

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

Programming

C
\u8659
JavaScript
\u8659
Java
\u8659
Json
\u8659
Python
\u8659
Perl
\x{8659}
PHP
\x{8659}
Ruby
\u{8659}
Rust
\u{8659}
Go
\u8659

Web

CSS
\008659
HtmlDecimal
虙
HtmlHexadecimal
虙
Url
%E8%99%99

Code

MD5
108dbc7b3099a4e3d320cff0c40250a5
Sha1
b0a0229274f79406b19bceed47b24c543210d2bb
Base64
6JmZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8659';
console.log(char);  // Output: 虙

Java:

char c = '\u8659';
System.out.println(c);  // Output: 虙

JSON:

{"text": "\u8659"}  // Value: 虙

Python:

char = '\u8659'
print(char)  # Output: 虙

Perl:

my $char = "\x{8659}";
print $char;  # Output: 虙

PHP:

$char = "\x{8659}";
echo $char;  // Output: 虙

Ruby:

char = "\u{8659}"
puts char  # Output: 虙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008659";  /* Display: 虙 */
}

HTML Decimal:

<p>HTML decimal: &#34393;</p>  <!-- Display: 虙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8659;</p>  <!-- Display: 虙 -->

URL Encoding:

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

Encodings

MD5:

108dbc7b3099a4e3d320cff0c40250a5

SHA1:

b0a0229274f79406b19bceed47b24c543210d2bb

Base64:

6JmZ