Unicode Finder

"蜰" U+8730(CJK UNIFIED IDEOGRAPH-8730)

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

Programming

C
\u8730
JavaScript
\u8730
Java
\u8730
Json
\u8730
Python
\u8730
Perl
\x{8730}
PHP
\x{8730}
Ruby
\u{8730}
Rust
\u{8730}
Go
\u8730

Web

CSS
\008730
HtmlDecimal
蜰
HtmlHexadecimal
蜰
Url
%E8%9C%B0

Code

MD5
116aef640e8e48307aa7e9942d85c17e
Sha1
06ceff07545f3c4b14bcd7076c28e3c1140786e8
Base64
6Jyw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8730';
console.log(char);  // Output: 蜰

Java:

char c = '\u8730';
System.out.println(c);  // Output: 蜰

JSON:

{"text": "\u8730"}  // Value: 蜰

Python:

char = '\u8730'
print(char)  # Output: 蜰

Perl:

my $char = "\x{8730}";
print $char;  # Output: 蜰

PHP:

$char = "\x{8730}";
echo $char;  // Output: 蜰

Ruby:

char = "\u{8730}"
puts char  # Output: 蜰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008730";  /* Display: 蜰 */
}

HTML Decimal:

<p>HTML decimal: &#34608;</p>  <!-- Display: 蜰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8730;</p>  <!-- Display: 蜰 -->

URL Encoding:

// 蜰 URL encoding
https://unicodefinder.com/search.php?query=%E8%9C%B0

Encodings

MD5:

116aef640e8e48307aa7e9942d85c17e

SHA1:

06ceff07545f3c4b14bcd7076c28e3c1140786e8

Base64:

6Jyw