Unicode Finder

"腖" U+8156(CJK UNIFIED IDEOGRAPH-8156)

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

Programming

C
\u8156
JavaScript
\u8156
Java
\u8156
Json
\u8156
Python
\u8156
Perl
\x{8156}
PHP
\x{8156}
Ruby
\u{8156}
Rust
\u{8156}
Go
\u8156

Web

CSS
\008156
HtmlDecimal
腖
HtmlHexadecimal
腖
Url
%E8%85%96

Code

MD5
85ae287931d952b97c81b78ad2f43b6d
Sha1
319ce37d5c00d9d995aa3fd8e07ddc8a3d927e72
Base64
6IWW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8156';
console.log(char);  // Output: 腖

Java:

char c = '\u8156';
System.out.println(c);  // Output: 腖

JSON:

{"text": "\u8156"}  // Value: 腖

Python:

char = '\u8156'
print(char)  # Output: 腖

Perl:

my $char = "\x{8156}";
print $char;  # Output: 腖

PHP:

$char = "\x{8156}";
echo $char;  // Output: 腖

Ruby:

char = "\u{8156}"
puts char  # Output: 腖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008156";  /* Display: 腖 */
}

HTML Decimal:

<p>HTML decimal: &#33110;</p>  <!-- Display: 腖 -->

HTML Hexadecimal:

<p>HTML hex: &#x8156;</p>  <!-- Display: 腖 -->

URL Encoding:

// 腖 URL encoding
https://unicodefinder.com/search.php?query=%E8%85%96

Encodings

MD5:

85ae287931d952b97c81b78ad2f43b6d

SHA1:

319ce37d5c00d9d995aa3fd8e07ddc8a3d927e72

Base64:

6IWW