Unicode Finder

"寞" U+5BDE(CJK UNIFIED IDEOGRAPH-5BDE)

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

Programming

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

Web

CSS
\005BDE
HtmlDecimal
寞
HtmlHexadecimal
寞
Url
%E5%AF%9E

Code

MD5
8c477ba72d1b19f775939be9eb629cd7
Sha1
22f0e3548c9b8e0d2c3489d61823d044fdd0ad5d
Base64
5a+e

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5BDE';
console.log(char);  // Output: 寞

Java:

char c = '\u5BDE';
System.out.println(c);  // Output: 寞

JSON:

{"text": "\u5BDE"}  // Value: 寞

Python:

char = '\u5BDE'
print(char)  # Output: 寞

Perl:

my $char = "\x{5BDE}";
print $char;  # Output: 寞

PHP:

$char = "\x{5BDE}";
echo $char;  // Output: 寞

Ruby:

char = "\u{5BDE}"
puts char  # Output: 寞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23518;</p>  <!-- Display: 寞 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BDE;</p>  <!-- Display: 寞 -->

URL Encoding:

// 寞 URL encoding
https://unicodefinder.com/search.php?query=%E5%AF%9E

Encodings

MD5:

8c477ba72d1b19f775939be9eb629cd7

SHA1:

22f0e3548c9b8e0d2c3489d61823d044fdd0ad5d

Base64:

5a+e