Unicode Finder

"腄" U+8144(CJK UNIFIED IDEOGRAPH-8144)

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

Programming

C
\u8144
JavaScript
\u8144
Java
\u8144
Json
\u8144
Python
\u8144
Perl
\x{8144}
PHP
\x{8144}
Ruby
\u{8144}
Rust
\u{8144}
Go
\u8144

Web

CSS
\008144
HtmlDecimal
腄
HtmlHexadecimal
腄
Url
%E8%85%84

Code

MD5
9606b526b5502f791c12af4f4658cdc5
Sha1
bce76d3bbc9d60ca86558d79c9de49bd83995da0
Base64
6IWE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8144';
console.log(char);  // Output: 腄

Java:

char c = '\u8144';
System.out.println(c);  // Output: 腄

JSON:

{"text": "\u8144"}  // Value: 腄

Python:

char = '\u8144'
print(char)  # Output: 腄

Perl:

my $char = "\x{8144}";
print $char;  # Output: 腄

PHP:

$char = "\x{8144}";
echo $char;  // Output: 腄

Ruby:

char = "\u{8144}"
puts char  # Output: 腄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008144";  /* Display: 腄 */
}

HTML Decimal:

<p>HTML decimal: &#33092;</p>  <!-- Display: 腄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8144;</p>  <!-- Display: 腄 -->

URL Encoding:

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

Encodings

MD5:

9606b526b5502f791c12af4f4658cdc5

SHA1:

bce76d3bbc9d60ca86558d79c9de49bd83995da0

Base64:

6IWE