Unicode Finder

"蠕" U+8815(CJK UNIFIED IDEOGRAPH-8815)

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

Programming

C
\u8815
JavaScript
\u8815
Java
\u8815
Json
\u8815
Python
\u8815
Perl
\x{8815}
PHP
\x{8815}
Ruby
\u{8815}
Rust
\u{8815}
Go
\u8815

Web

CSS
\008815
HtmlDecimal
蠕
HtmlHexadecimal
蠕
Url
%E8%A0%95

Code

MD5
6f81015aa33f27c3b2e41d1c18080a66
Sha1
bf20bfc942ab1dea3359812193e46e2fcf69e389
Base64
6KCV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8815';
console.log(char);  // Output: 蠕

Java:

char c = '\u8815';
System.out.println(c);  // Output: 蠕

JSON:

{"text": "\u8815"}  // Value: 蠕

Python:

char = '\u8815'
print(char)  # Output: 蠕

Perl:

my $char = "\x{8815}";
print $char;  # Output: 蠕

PHP:

$char = "\x{8815}";
echo $char;  // Output: 蠕

Ruby:

char = "\u{8815}"
puts char  # Output: 蠕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008815";  /* Display: 蠕 */
}

HTML Decimal:

<p>HTML decimal: &#34837;</p>  <!-- Display: 蠕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8815;</p>  <!-- Display: 蠕 -->

URL Encoding:

// 蠕 URL encoding
https://unicodefinder.com/search.php?query=%E8%A0%95

Encodings

MD5:

6f81015aa33f27c3b2e41d1c18080a66

SHA1:

bf20bfc942ab1dea3359812193e46e2fcf69e389

Base64:

6KCV