Unicode Finder

"腿" U+817F(CJK UNIFIED IDEOGRAPH-817F)

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

Programming

C
\u817F
JavaScript
\u817F
Java
\u817F
Json
\u817F
Python
\u817F
Perl
\x{817F}
PHP
\x{817F}
Ruby
\u{817F}
Rust
\u{817F}
Go
\u817F

Web

CSS
\00817F
HtmlDecimal
腿
HtmlHexadecimal
腿
Url
%E8%85%BF

Code

MD5
9d023c6d9baab342350b143564c2496c
Sha1
4c87ff7c7c1fd8eea38cb1ca7b0dc1eb3bfda2c6
Base64
6IW/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u817F';
console.log(char);  // Output: 腿

Java:

char c = '\u817F';
System.out.println(c);  // Output: 腿

JSON:

{"text": "\u817F"}  // Value: 腿

Python:

char = '\u817F'
print(char)  # Output: 腿

Perl:

my $char = "\x{817F}";
print $char;  # Output: 腿

PHP:

$char = "\x{817F}";
echo $char;  // Output: 腿

Ruby:

char = "\u{817F}"
puts char  # Output: 腿

Rust:

let c = '\u{817F}';
println!("{}", c);  // Output: 腿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00817F";  /* Display: 腿 */
}

HTML Decimal:

<p>HTML decimal: &#33151;</p>  <!-- Display: 腿 -->

HTML Hexadecimal:

<p>HTML hex: &#x817F;</p>  <!-- Display: 腿 -->

URL Encoding:

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

Encodings

MD5:

9d023c6d9baab342350b143564c2496c

SHA1:

4c87ff7c7c1fd8eea38cb1ca7b0dc1eb3bfda2c6

Base64:

6IW/