Unicode Finder

"叶" U+53F6(CJK UNIFIED IDEOGRAPH-53F6)

U+53F6
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-53F6

Programming

C
\u53F6
JavaScript
\u53F6
Java
\u53F6
Json
\u53F6
Python
\u53F6
Perl
\x{53F6}
PHP
\x{53F6}
Ruby
\u{53F6}
Rust
\u{53F6}
Go
\u53F6

Web

CSS
\0053F6
HtmlDecimal
叶
HtmlHexadecimal
叶
Url
%E5%8F%B6

Code

MD5
066aab17034dd433da8db489196729c6
Sha1
6bf3d820dd27e422647eb06b3f42355b22162770
Base64
5Y+2

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u53F6';
console.log(char);  // Output: 叶

Java:

char c = '\u53F6';
System.out.println(c);  // Output: 叶

JSON:

{"text": "\u53F6"}  // Value: 叶

Python:

char = '\u53F6'
print(char)  # Output: 叶

Perl:

my $char = "\x{53F6}";
print $char;  # Output: 叶

PHP:

$char = "\x{53F6}";
echo $char;  // Output: 叶

Ruby:

char = "\u{53F6}"
puts char  # Output: 叶

Rust:

let c = '\u{53F6}';
println!("{}", c);  // Output: 叶

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0053F6";  /* Display: 叶 */
}

HTML Decimal:

<p>HTML decimal: &#21494;</p>  <!-- Display: 叶 -->

HTML Hexadecimal:

<p>HTML hex: &#x53F6;</p>  <!-- Display: 叶 -->

URL Encoding:

// 叶 URL encoding
https://unicodefinder.com/search.php?query=%E5%8F%B6

Encodings

MD5:

066aab17034dd433da8db489196729c6

SHA1:

6bf3d820dd27e422647eb06b3f42355b22162770

Base64:

5Y+2