Unicode Finder

"虄" U+8644(CJK UNIFIED IDEOGRAPH-8644)

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

Programming

C
\u8644
JavaScript
\u8644
Java
\u8644
Json
\u8644
Python
\u8644
Perl
\x{8644}
PHP
\x{8644}
Ruby
\u{8644}
Rust
\u{8644}
Go
\u8644

Web

CSS
\008644
HtmlDecimal
虄
HtmlHexadecimal
虄
Url
%E8%99%84

Code

MD5
e54c6eedf6c1320df28ce04b5622ac81
Sha1
408fd4b77449693de42ebe19412deef83b2df9a2
Base64
6JmE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8644';
console.log(char);  // Output: 虄

Java:

char c = '\u8644';
System.out.println(c);  // Output: 虄

JSON:

{"text": "\u8644"}  // Value: 虄

Python:

char = '\u8644'
print(char)  # Output: 虄

Perl:

my $char = "\x{8644}";
print $char;  # Output: 虄

PHP:

$char = "\x{8644}";
echo $char;  // Output: 虄

Ruby:

char = "\u{8644}"
puts char  # Output: 虄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008644";  /* Display: 虄 */
}

HTML Decimal:

<p>HTML decimal: &#34372;</p>  <!-- Display: 虄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8644;</p>  <!-- Display: 虄 -->

URL Encoding:

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

Encodings

MD5:

e54c6eedf6c1320df28ce04b5622ac81

SHA1:

408fd4b77449693de42ebe19412deef83b2df9a2

Base64:

6JmE