Unicode Finder

"虩" U+8669(CJK UNIFIED IDEOGRAPH-8669)

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

Programming

C
\u8669
JavaScript
\u8669
Java
\u8669
Json
\u8669
Python
\u8669
Perl
\x{8669}
PHP
\x{8669}
Ruby
\u{8669}
Rust
\u{8669}
Go
\u8669

Web

CSS
\008669
HtmlDecimal
虩
HtmlHexadecimal
虩
Url
%E8%99%A9

Code

MD5
aef220f5ef14c3b4af9b07e3de03176e
Sha1
eebb97a190dd96544f3ad6de7754d4076c3b0692
Base64
6Jmp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8669';
console.log(char);  // Output: 虩

Java:

char c = '\u8669';
System.out.println(c);  // Output: 虩

JSON:

{"text": "\u8669"}  // Value: 虩

Python:

char = '\u8669'
print(char)  # Output: 虩

Perl:

my $char = "\x{8669}";
print $char;  # Output: 虩

PHP:

$char = "\x{8669}";
echo $char;  // Output: 虩

Ruby:

char = "\u{8669}"
puts char  # Output: 虩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008669";  /* Display: 虩 */
}

HTML Decimal:

<p>HTML decimal: &#34409;</p>  <!-- Display: 虩 -->

HTML Hexadecimal:

<p>HTML hex: &#x8669;</p>  <!-- Display: 虩 -->

URL Encoding:

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

Encodings

MD5:

aef220f5ef14c3b4af9b07e3de03176e

SHA1:

eebb97a190dd96544f3ad6de7754d4076c3b0692

Base64:

6Jmp