Unicode Finder

"叿" U+53FF(CJK UNIFIED IDEOGRAPH-53FF)

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

Programming

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

Web

CSS
\0053FF
HtmlDecimal
叿
HtmlHexadecimal
叿
Url
%E5%8F%BF

Code

MD5
6424ffa631eeb15eb13b2d4b5c47760b
Sha1
6160acf54a12a51eaf4a6b2fb27ef14a4cdf64a4
Base64
5Y+/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u53FF';
console.log(char);  // Output: 叿

Java:

char c = '\u53FF';
System.out.println(c);  // Output: 叿

JSON:

{"text": "\u53FF"}  // Value: 叿

Python:

char = '\u53FF'
print(char)  # Output: 叿

Perl:

my $char = "\x{53FF}";
print $char;  # Output: 叿

PHP:

$char = "\x{53FF}";
echo $char;  // Output: 叿

Ruby:

char = "\u{53FF}"
puts char  # Output: 叿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21503;</p>  <!-- Display: 叿 -->

HTML Hexadecimal:

<p>HTML hex: &#x53FF;</p>  <!-- Display: 叿 -->

URL Encoding:

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

Encodings

MD5:

6424ffa631eeb15eb13b2d4b5c47760b

SHA1:

6160acf54a12a51eaf4a6b2fb27ef14a4cdf64a4

Base64:

5Y+/