Unicode Finder

"虣" U+8663(CJK UNIFIED IDEOGRAPH-8663)

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

Programming

C
\u8663
JavaScript
\u8663
Java
\u8663
Json
\u8663
Python
\u8663
Perl
\x{8663}
PHP
\x{8663}
Ruby
\u{8663}
Rust
\u{8663}
Go
\u8663

Web

CSS
\008663
HtmlDecimal
虣
HtmlHexadecimal
虣
Url
%E8%99%A3

Code

MD5
36f4c6481a2db8909715610c48df05dd
Sha1
83693daab9d52a4ed82beab8971e62887f8b5b3d
Base64
6Jmj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8663';
console.log(char);  // Output: 虣

Java:

char c = '\u8663';
System.out.println(c);  // Output: 虣

JSON:

{"text": "\u8663"}  // Value: 虣

Python:

char = '\u8663'
print(char)  # Output: 虣

Perl:

my $char = "\x{8663}";
print $char;  # Output: 虣

PHP:

$char = "\x{8663}";
echo $char;  // Output: 虣

Ruby:

char = "\u{8663}"
puts char  # Output: 虣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008663";  /* Display: 虣 */
}

HTML Decimal:

<p>HTML decimal: &#34403;</p>  <!-- Display: 虣 -->

HTML Hexadecimal:

<p>HTML hex: &#x8663;</p>  <!-- Display: 虣 -->

URL Encoding:

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

Encodings

MD5:

36f4c6481a2db8909715610c48df05dd

SHA1:

83693daab9d52a4ed82beab8971e62887f8b5b3d

Base64:

6Jmj