Unicode Finder

"句" U+53E5(CJK UNIFIED IDEOGRAPH-53E5)

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

Programming

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

Web

CSS
\0053E5
HtmlDecimal
句
HtmlHexadecimal
句
Url
%E5%8F%A5

Code

MD5
e1b9163e385c0855f4994b8d4e4945ee
Sha1
27df1ce63cbd7f1efd5ef077991cfcefaa5c04d6
Base64
5Y+l

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u53E5';
console.log(char);  // Output: 句

Java:

char c = '\u53E5';
System.out.println(c);  // Output: 句

JSON:

{"text": "\u53E5"}  // Value: 句

Python:

char = '\u53E5'
print(char)  # Output: 句

Perl:

my $char = "\x{53E5}";
print $char;  # Output: 句

PHP:

$char = "\x{53E5}";
echo $char;  // Output: 句

Ruby:

char = "\u{53E5}"
puts char  # Output: 句

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21477;</p>  <!-- Display: 句 -->

HTML Hexadecimal:

<p>HTML hex: &#x53E5;</p>  <!-- Display: 句 -->

URL Encoding:

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

Encodings

MD5:

e1b9163e385c0855f4994b8d4e4945ee

SHA1:

27df1ce63cbd7f1efd5ef077991cfcefaa5c04d6

Base64:

5Y+l