Unicode Finder

"虓" U+8653(CJK UNIFIED IDEOGRAPH-8653)

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

Programming

C
\u8653
JavaScript
\u8653
Java
\u8653
Json
\u8653
Python
\u8653
Perl
\x{8653}
PHP
\x{8653}
Ruby
\u{8653}
Rust
\u{8653}
Go
\u8653

Web

CSS
\008653
HtmlDecimal
虓
HtmlHexadecimal
虓
Url
%E8%99%93

Code

MD5
159a6e047ad8134e6d7ab59c36abecdb
Sha1
03723cc39dccf180cab5e0a62682e922d849a1b4
Base64
6JmT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8653';
console.log(char);  // Output: 虓

Java:

char c = '\u8653';
System.out.println(c);  // Output: 虓

JSON:

{"text": "\u8653"}  // Value: 虓

Python:

char = '\u8653'
print(char)  # Output: 虓

Perl:

my $char = "\x{8653}";
print $char;  # Output: 虓

PHP:

$char = "\x{8653}";
echo $char;  // Output: 虓

Ruby:

char = "\u{8653}"
puts char  # Output: 虓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008653";  /* Display: 虓 */
}

HTML Decimal:

<p>HTML decimal: &#34387;</p>  <!-- Display: 虓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8653;</p>  <!-- Display: 虓 -->

URL Encoding:

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

Encodings

MD5:

159a6e047ad8134e6d7ab59c36abecdb

SHA1:

03723cc39dccf180cab5e0a62682e922d849a1b4

Base64:

6JmT