Unicode Finder

"巁" U+5DC1(CJK UNIFIED IDEOGRAPH-5DC1)

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

Programming

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

Web

CSS
\005DC1
HtmlDecimal
巁
HtmlHexadecimal
巁
Url
%E5%B7%81

Code

MD5
10fdb2b39651f7a3b9e6f9f5a6502184
Sha1
dbc7337a3573e58f779370a2116424fa7c7553be
Base64
5beB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5DC1';
console.log(char);  // Output: 巁

Java:

char c = '\u5DC1';
System.out.println(c);  // Output: 巁

JSON:

{"text": "\u5DC1"}  // Value: 巁

Python:

char = '\u5DC1'
print(char)  # Output: 巁

Perl:

my $char = "\x{5DC1}";
print $char;  # Output: 巁

PHP:

$char = "\x{5DC1}";
echo $char;  // Output: 巁

Ruby:

char = "\u{5DC1}"
puts char  # Output: 巁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24001;</p>  <!-- Display: 巁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DC1;</p>  <!-- Display: 巁 -->

URL Encoding:

// 巁 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%81

Encodings

MD5:

10fdb2b39651f7a3b9e6f9f5a6502184

SHA1:

dbc7337a3573e58f779370a2116424fa7c7553be

Base64:

5beB