Unicode Finder

"身" U+8EAB(CJK UNIFIED IDEOGRAPH-8EAB)

U+8EAB
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8EAB

Programming

C
\u8EAB
JavaScript
\u8EAB
Java
\u8EAB
Json
\u8EAB
Python
\u8EAB
Perl
\x{8EAB}
PHP
\x{8EAB}
Ruby
\u{8EAB}
Rust
\u{8EAB}
Go
\u8EAB

Web

CSS
\008EAB
HtmlDecimal
身
HtmlHexadecimal
身
Url
%E8%BA%AB

Code

MD5
11414d72681b55e86bc399954c48d6e0
Sha1
44a60d99966cab0366cb7df6f87d33701b5d63b6
Base64
6Lqr

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8EAB';
console.log(char);  // Output: 身

Java:

char c = '\u8EAB';
System.out.println(c);  // Output: 身

JSON:

{"text": "\u8EAB"}  // Value: 身

Python:

char = '\u8EAB'
print(char)  # Output: 身

Perl:

my $char = "\x{8EAB}";
print $char;  # Output: 身

PHP:

$char = "\x{8EAB}";
echo $char;  // Output: 身

Ruby:

char = "\u{8EAB}"
puts char  # Output: 身

Rust:

let c = '\u{8EAB}';
println!("{}", c);  // Output: 身

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008EAB";  /* Display: 身 */
}

HTML Decimal:

<p>HTML decimal: &#36523;</p>  <!-- Display: 身 -->

HTML Hexadecimal:

<p>HTML hex: &#x8EAB;</p>  <!-- Display: 身 -->

URL Encoding:

// 身 URL encoding
https://unicodefinder.com/search.php?query=%E8%BA%AB

Encodings

MD5:

11414d72681b55e86bc399954c48d6e0

SHA1:

44a60d99966cab0366cb7df6f87d33701b5d63b6

Base64:

6Lqr