Unicode Finder

"寿" U+5BFF(CJK UNIFIED IDEOGRAPH-5BFF)

寿
U+5BFF
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5BFF

Programming

C
\u5BFF
JavaScript
\u5BFF
Java
\u5BFF
Json
\u5BFF
Python
\u5BFF
Perl
\x{5BFF}
PHP
\x{5BFF}
Ruby
\u{5BFF}
Rust
\u{5BFF}
Go
\u5BFF

Web

CSS
\005BFF
HtmlDecimal
寿
HtmlHexadecimal
寿
Url
%E5%AF%BF

Code

MD5
f98e8cf0cf2d4d75130f79c5a20d955d
Sha1
a1f94777728aa3695e6ae47be17ec06d5874b98c
Base64
5a+/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5BFF';
console.log(char);  // Output: 寿

Java:

char c = '\u5BFF';
System.out.println(c);  // Output: 寿

JSON:

{"text": "\u5BFF"}  // Value: 寿

Python:

char = '\u5BFF'
print(char)  # Output: 寿

Perl:

my $char = "\x{5BFF}";
print $char;  # Output: 寿

PHP:

$char = "\x{5BFF}";
echo $char;  // Output: 寿

Ruby:

char = "\u{5BFF}"
puts char  # Output: 寿

Rust:

let c = '\u{5BFF}';
println!("{}", c);  // Output: 寿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005BFF";  /* Display: 寿 */
}

HTML Decimal:

<p>HTML decimal: &#23551;</p>  <!-- Display: 寿 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BFF;</p>  <!-- Display: 寿 -->

URL Encoding:

// 寿 URL encoding
https://unicodefinder.com/search.php?query=%E5%AF%BF

Encodings

MD5:

f98e8cf0cf2d4d75130f79c5a20d955d

SHA1:

a1f94777728aa3695e6ae47be17ec06d5874b98c

Base64:

5a+/