Unicode Finder

"巀" U+5DC0(CJK UNIFIED IDEOGRAPH-5DC0)

U+5DC0
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5DC0

Programming

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

Web

CSS
\005DC0
HtmlDecimal
巀
HtmlHexadecimal
巀
Url
%E5%B7%80

Code

MD5
864930972621128dbd8076eba5280770
Sha1
39ba826ec231f466cec5b3e59848d60fb70616d9
Base64
5beA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DC0';
console.log(char);  // Output: 巀

Java:

char c = '\u5DC0';
System.out.println(c);  // Output: 巀

JSON:

{"text": "\u5DC0"}  // Value: 巀

Python:

char = '\u5DC0'
print(char)  # Output: 巀

Perl:

my $char = "\x{5DC0}";
print $char;  # Output: 巀

PHP:

$char = "\x{5DC0}";
echo $char;  // Output: 巀

Ruby:

char = "\u{5DC0}"
puts char  # Output: 巀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24000;</p>  <!-- Display: 巀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DC0;</p>  <!-- Display: 巀 -->

URL Encoding:

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

Encodings

MD5:

864930972621128dbd8076eba5280770

SHA1:

39ba826ec231f466cec5b3e59848d60fb70616d9

Base64:

5beA