Unicode Finder

"休" U+4F11(CJK UNIFIED IDEOGRAPH-4F11)

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

Programming

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

Web

CSS
\004F11
HtmlDecimal
休
HtmlHexadecimal
休
Url
%E4%BC%91

Code

MD5
51147c21528d3df27e4d8eb8a1ebd00b
Sha1
0afbe7b539e1a1fb8bc41209ca28d526d4447ec0
Base64
5LyR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F11';
console.log(char);  // Output: 休

Java:

char c = '\u4F11';
System.out.println(c);  // Output: 休

JSON:

{"text": "\u4F11"}  // Value: 休

Python:

char = '\u4F11'
print(char)  # Output: 休

Perl:

my $char = "\x{4F11}";
print $char;  # Output: 休

PHP:

$char = "\x{4F11}";
echo $char;  // Output: 休

Ruby:

char = "\u{4F11}"
puts char  # Output: 休

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20241;</p>  <!-- Display: 休 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F11;</p>  <!-- Display: 休 -->

URL Encoding:

// 休 URL encoding
https://unicodefinder.com/search.php?query=%E4%BC%91

Encodings

MD5:

51147c21528d3df27e4d8eb8a1ebd00b

SHA1:

0afbe7b539e1a1fb8bc41209ca28d526d4447ec0

Base64:

5LyR