Unicode Finder

"蛕" U+86D5(CJK UNIFIED IDEOGRAPH-86D5)

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

Programming

C
\u86D5
JavaScript
\u86D5
Java
\u86D5
Json
\u86D5
Python
\u86D5
Perl
\x{86D5}
PHP
\x{86D5}
Ruby
\u{86D5}
Rust
\u{86D5}
Go
\u86D5

Web

CSS
\0086D5
HtmlDecimal
蛕
HtmlHexadecimal
蛕
Url
%E8%9B%95

Code

MD5
850328a5c66b89e700e3fcca9c1025b5
Sha1
1be94dca34e767d6221a9b123db877544d3a1736
Base64
6JuV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u86D5';
console.log(char);  // Output: 蛕

Java:

char c = '\u86D5';
System.out.println(c);  // Output: 蛕

JSON:

{"text": "\u86D5"}  // Value: 蛕

Python:

char = '\u86D5'
print(char)  # Output: 蛕

Perl:

my $char = "\x{86D5}";
print $char;  # Output: 蛕

PHP:

$char = "\x{86D5}";
echo $char;  // Output: 蛕

Ruby:

char = "\u{86D5}"
puts char  # Output: 蛕

Rust:

let c = '\u{86D5}';
println!("{}", c);  // Output: 蛕

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0086D5";  /* Display: 蛕 */
}

HTML Decimal:

<p>HTML decimal: &#34517;</p>  <!-- Display: 蛕 -->

HTML Hexadecimal:

<p>HTML hex: &#x86D5;</p>  <!-- Display: 蛕 -->

URL Encoding:

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

Encodings

MD5:

850328a5c66b89e700e3fcca9c1025b5

SHA1:

1be94dca34e767d6221a9b123db877544d3a1736

Base64:

6JuV