Unicode Finder

"蝗" U+8757(CJK UNIFIED IDEOGRAPH-8757)

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

Programming

C
\u8757
JavaScript
\u8757
Java
\u8757
Json
\u8757
Python
\u8757
Perl
\x{8757}
PHP
\x{8757}
Ruby
\u{8757}
Rust
\u{8757}
Go
\u8757

Web

CSS
\008757
HtmlDecimal
蝗
HtmlHexadecimal
蝗
Url
%E8%9D%97

Code

MD5
7bd042b7e37e9bc44964db121575d91f
Sha1
1af0d576d6ad2f53a048aef2ae38ebc39e9c0e4e
Base64
6J2X

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8757';
console.log(char);  // Output: 蝗

Java:

char c = '\u8757';
System.out.println(c);  // Output: 蝗

JSON:

{"text": "\u8757"}  // Value: 蝗

Python:

char = '\u8757'
print(char)  # Output: 蝗

Perl:

my $char = "\x{8757}";
print $char;  # Output: 蝗

PHP:

$char = "\x{8757}";
echo $char;  // Output: 蝗

Ruby:

char = "\u{8757}"
puts char  # Output: 蝗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008757";  /* Display: 蝗 */
}

HTML Decimal:

<p>HTML decimal: &#34647;</p>  <!-- Display: 蝗 -->

HTML Hexadecimal:

<p>HTML hex: &#x8757;</p>  <!-- Display: 蝗 -->

URL Encoding:

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

Encodings

MD5:

7bd042b7e37e9bc44964db121575d91f

SHA1:

1af0d576d6ad2f53a048aef2ae38ebc39e9c0e4e

Base64:

6J2X