Unicode Finder

"虰" U+8670(CJK UNIFIED IDEOGRAPH-8670)

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

Programming

C
\u8670
JavaScript
\u8670
Java
\u8670
Json
\u8670
Python
\u8670
Perl
\x{8670}
PHP
\x{8670}
Ruby
\u{8670}
Rust
\u{8670}
Go
\u8670

Web

CSS
\008670
HtmlDecimal
虰
HtmlHexadecimal
虰
Url
%E8%99%B0

Code

MD5
82d38fd93bbc534811478e5cbcc18fd3
Sha1
3a3f5774b41766060bb5ab7c20f1afe4a30f46d8
Base64
6Jmw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8670';
console.log(char);  // Output: 虰

Java:

char c = '\u8670';
System.out.println(c);  // Output: 虰

JSON:

{"text": "\u8670"}  // Value: 虰

Python:

char = '\u8670'
print(char)  # Output: 虰

Perl:

my $char = "\x{8670}";
print $char;  # Output: 虰

PHP:

$char = "\x{8670}";
echo $char;  // Output: 虰

Ruby:

char = "\u{8670}"
puts char  # Output: 虰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008670";  /* Display: 虰 */
}

HTML Decimal:

<p>HTML decimal: &#34416;</p>  <!-- Display: 虰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8670;</p>  <!-- Display: 虰 -->

URL Encoding:

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

Encodings

MD5:

82d38fd93bbc534811478e5cbcc18fd3

SHA1:

3a3f5774b41766060bb5ab7c20f1afe4a30f46d8

Base64:

6Jmw