Unicode Finder

"体" U+4F53(CJK UNIFIED IDEOGRAPH-4F53)

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

Programming

C
\u4F53
JavaScript
\u4F53
Java
\u4F53
Json
\u4F53
Python
\u4F53
Perl
\x{4F53}
PHP
\x{4F53}
Ruby
\u{4F53}
Rust
\u{4F53}
Go
\u4F53

Web

CSS
\004F53
HtmlDecimal
体
HtmlHexadecimal
体
Url
%E4%BD%93

Code

MD5
49dd5c7b9a563b27e5e90662883d8ff7
Sha1
d37fc6a5eb9e695c815279a4d7a83127b9fe9900
Base64
5L2T

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F53';
console.log(char);  // Output: 体

Java:

char c = '\u4F53';
System.out.println(c);  // Output: 体

JSON:

{"text": "\u4F53"}  // Value: 体

Python:

char = '\u4F53'
print(char)  # Output: 体

Perl:

my $char = "\x{4F53}";
print $char;  # Output: 体

PHP:

$char = "\x{4F53}";
echo $char;  // Output: 体

Ruby:

char = "\u{4F53}"
puts char  # Output: 体

Rust:

let c = '\u{4F53}';
println!("{}", c);  // Output: 体

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004F53";  /* Display: 体 */
}

HTML Decimal:

<p>HTML decimal: &#20307;</p>  <!-- Display: 体 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F53;</p>  <!-- Display: 体 -->

URL Encoding:

// 体 URL encoding
https://unicodefinder.com/search.php?query=%E4%BD%93

Encodings

MD5:

49dd5c7b9a563b27e5e90662883d8ff7

SHA1:

d37fc6a5eb9e695c815279a4d7a83127b9fe9900

Base64:

5L2T