Unicode Finder

"蚕" U+8695(CJK UNIFIED IDEOGRAPH-8695)

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

Programming

C
\u8695
JavaScript
\u8695
Java
\u8695
Json
\u8695
Python
\u8695
Perl
\x{8695}
PHP
\x{8695}
Ruby
\u{8695}
Rust
\u{8695}
Go
\u8695

Web

CSS
\008695
HtmlDecimal
蚕
HtmlHexadecimal
蚕
Url
%E8%9A%95

Code

MD5
32efb6bc50fca423d8956df7616646e4
Sha1
73eb9ba0a005505b50075489ab80909666316690
Base64
6JqV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8695';
console.log(char);  // Output: 蚕

Java:

char c = '\u8695';
System.out.println(c);  // Output: 蚕

JSON:

{"text": "\u8695"}  // Value: 蚕

Python:

char = '\u8695'
print(char)  # Output: 蚕

Perl:

my $char = "\x{8695}";
print $char;  # Output: 蚕

PHP:

$char = "\x{8695}";
echo $char;  // Output: 蚕

Ruby:

char = "\u{8695}"
puts char  # Output: 蚕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008695";  /* Display: 蚕 */
}

HTML Decimal:

<p>HTML decimal: &#34453;</p>  <!-- Display: 蚕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8695;</p>  <!-- Display: 蚕 -->

URL Encoding:

// 蚕 URL encoding
https://unicodefinder.com/search.php?query=%E8%9A%95

Encodings

MD5:

32efb6bc50fca423d8956df7616646e4

SHA1:

73eb9ba0a005505b50075489ab80909666316690

Base64:

6JqV