Unicode Finder

"蝉" U+8749(CJK UNIFIED IDEOGRAPH-8749)

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

Programming

C
\u8749
JavaScript
\u8749
Java
\u8749
Json
\u8749
Python
\u8749
Perl
\x{8749}
PHP
\x{8749}
Ruby
\u{8749}
Rust
\u{8749}
Go
\u8749

Web

CSS
\008749
HtmlDecimal
蝉
HtmlHexadecimal
蝉
Url
%E8%9D%89

Code

MD5
b73b835da451939016938d0d8ea40081
Sha1
bf92e92cb331023db07489ba35aedbf19e1f1b76
Base64
6J2J

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8749';
console.log(char);  // Output: 蝉

Java:

char c = '\u8749';
System.out.println(c);  // Output: 蝉

JSON:

{"text": "\u8749"}  // Value: 蝉

Python:

char = '\u8749'
print(char)  # Output: 蝉

Perl:

my $char = "\x{8749}";
print $char;  # Output: 蝉

PHP:

$char = "\x{8749}";
echo $char;  // Output: 蝉

Ruby:

char = "\u{8749}"
puts char  # Output: 蝉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008749";  /* Display: 蝉 */
}

HTML Decimal:

<p>HTML decimal: &#34633;</p>  <!-- Display: 蝉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8749;</p>  <!-- Display: 蝉 -->

URL Encoding:

// 蝉 URL encoding
https://unicodefinder.com/search.php?query=%E8%9D%89

Encodings

MD5:

b73b835da451939016938d0d8ea40081

SHA1:

bf92e92cb331023db07489ba35aedbf19e1f1b76

Base64:

6J2J