Unicode Finder

"蜦" U+8726(CJK UNIFIED IDEOGRAPH-8726)

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

Programming

C
\u8726
JavaScript
\u8726
Java
\u8726
Json
\u8726
Python
\u8726
Perl
\x{8726}
PHP
\x{8726}
Ruby
\u{8726}
Rust
\u{8726}
Go
\u8726

Web

CSS
\008726
HtmlDecimal
蜦
HtmlHexadecimal
蜦
Url
%E8%9C%A6

Code

MD5
dead7ff9049c0542bc00d7a66c86fc22
Sha1
eb3fc4b65ab210b305ea8821cf05d8f2f2d6f729
Base64
6Jym

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8726';
console.log(char);  // Output: 蜦

Java:

char c = '\u8726';
System.out.println(c);  // Output: 蜦

JSON:

{"text": "\u8726"}  // Value: 蜦

Python:

char = '\u8726'
print(char)  # Output: 蜦

Perl:

my $char = "\x{8726}";
print $char;  # Output: 蜦

PHP:

$char = "\x{8726}";
echo $char;  // Output: 蜦

Ruby:

char = "\u{8726}"
puts char  # Output: 蜦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008726";  /* Display: 蜦 */
}

HTML Decimal:

<p>HTML decimal: &#34598;</p>  <!-- Display: 蜦 -->

HTML Hexadecimal:

<p>HTML hex: &#x8726;</p>  <!-- Display: 蜦 -->

URL Encoding:

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

Encodings

MD5:

dead7ff9049c0542bc00d7a66c86fc22

SHA1:

eb3fc4b65ab210b305ea8821cf05d8f2f2d6f729

Base64:

6Jym