Unicode Finder

"蜧" U+8727(CJK UNIFIED IDEOGRAPH-8727)

U+8727
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8727

Programming

C
\u8727
JavaScript
\u8727
Java
\u8727
Json
\u8727
Python
\u8727
Perl
\x{8727}
PHP
\x{8727}
Ruby
\u{8727}
Rust
\u{8727}
Go
\u8727

Web

CSS
\008727
HtmlDecimal
蜧
HtmlHexadecimal
蜧
Url
%E8%9C%A7

Code

MD5
2c61198c305e336507a1e9efb80ef1cc
Sha1
ad4e865bcd9ea3900753beb7881ca0ee9a228500
Base64
6Jyn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8727';
console.log(char);  // Output: 蜧

Java:

char c = '\u8727';
System.out.println(c);  // Output: 蜧

JSON:

{"text": "\u8727"}  // Value: 蜧

Python:

char = '\u8727'
print(char)  # Output: 蜧

Perl:

my $char = "\x{8727}";
print $char;  # Output: 蜧

PHP:

$char = "\x{8727}";
echo $char;  // Output: 蜧

Ruby:

char = "\u{8727}"
puts char  # Output: 蜧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008727";  /* Display: 蜧 */
}

HTML Decimal:

<p>HTML decimal: &#34599;</p>  <!-- Display: 蜧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8727;</p>  <!-- Display: 蜧 -->

URL Encoding:

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

Encodings

MD5:

2c61198c305e336507a1e9efb80ef1cc

SHA1:

ad4e865bcd9ea3900753beb7881ca0ee9a228500

Base64:

6Jyn