Unicode Finder

"叕" U+53D5(CJK UNIFIED IDEOGRAPH-53D5)

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

Programming

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

Web

CSS
\0053D5
HtmlDecimal
叕
HtmlHexadecimal
叕
Url
%E5%8F%95

Code

MD5
9ab501d9bbca728d962f4087d91fe6f4
Sha1
d94714d6b63f85631e8cdf2dcdb2ec129f09894c
Base64
5Y+V

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u53D5';
console.log(char);  // Output: 叕

Java:

char c = '\u53D5';
System.out.println(c);  // Output: 叕

JSON:

{"text": "\u53D5"}  // Value: 叕

Python:

char = '\u53D5'
print(char)  # Output: 叕

Perl:

my $char = "\x{53D5}";
print $char;  # Output: 叕

PHP:

$char = "\x{53D5}";
echo $char;  // Output: 叕

Ruby:

char = "\u{53D5}"
puts char  # Output: 叕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21461;</p>  <!-- Display: 叕 -->

HTML Hexadecimal:

<p>HTML hex: &#x53D5;</p>  <!-- Display: 叕 -->

URL Encoding:

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

Encodings

MD5:

9ab501d9bbca728d962f4087d91fe6f4

SHA1:

d94714d6b63f85631e8cdf2dcdb2ec129f09894c

Base64:

5Y+V