Unicode Finder

"巋" U+5DCB(CJK UNIFIED IDEOGRAPH-5DCB)

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

Programming

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

Web

CSS
\005DCB
HtmlDecimal
巋
HtmlHexadecimal
巋
Url
%E5%B7%8B

Code

MD5
e06598f9455f11ddcc1dd21ac47ad6c2
Sha1
4662eb8fe145b36dc69474b81de23ecb1b59cef0
Base64
5beL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5DCB';
console.log(char);  // Output: 巋

Java:

char c = '\u5DCB';
System.out.println(c);  // Output: 巋

JSON:

{"text": "\u5DCB"}  // Value: 巋

Python:

char = '\u5DCB'
print(char)  # Output: 巋

Perl:

my $char = "\x{5DCB}";
print $char;  # Output: 巋

PHP:

$char = "\x{5DCB}";
echo $char;  // Output: 巋

Ruby:

char = "\u{5DCB}"
puts char  # Output: 巋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24011;</p>  <!-- Display: 巋 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DCB;</p>  <!-- Display: 巋 -->

URL Encoding:

// 巋 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%8B

Encodings

MD5:

e06598f9455f11ddcc1dd21ac47ad6c2

SHA1:

4662eb8fe145b36dc69474b81de23ecb1b59cef0

Base64:

5beL