Unicode Finder

"虉" U+8649(CJK UNIFIED IDEOGRAPH-8649)

U+8649
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8649

Programming

C
\u8649
JavaScript
\u8649
Java
\u8649
Json
\u8649
Python
\u8649
Perl
\x{8649}
PHP
\x{8649}
Ruby
\u{8649}
Rust
\u{8649}
Go
\u8649

Web

CSS
\008649
HtmlDecimal
虉
HtmlHexadecimal
虉
Url
%E8%99%89

Code

MD5
12d2b6f6c0f76322ce80e9914df222fe
Sha1
40f921876767916693fe1c6df3cb95d824ce4765
Base64
6JmJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8649';
console.log(char);  // Output: 虉

Java:

char c = '\u8649';
System.out.println(c);  // Output: 虉

JSON:

{"text": "\u8649"}  // Value: 虉

Python:

char = '\u8649'
print(char)  # Output: 虉

Perl:

my $char = "\x{8649}";
print $char;  # Output: 虉

PHP:

$char = "\x{8649}";
echo $char;  // Output: 虉

Ruby:

char = "\u{8649}"
puts char  # Output: 虉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008649";  /* Display: 虉 */
}

HTML Decimal:

<p>HTML decimal: &#34377;</p>  <!-- Display: 虉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8649;</p>  <!-- Display: 虉 -->

URL Encoding:

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

Encodings

MD5:

12d2b6f6c0f76322ce80e9914df222fe

SHA1:

40f921876767916693fe1c6df3cb95d824ce4765

Base64:

6JmJ