Unicode Finder

"巍" U+5DCD(CJK UNIFIED IDEOGRAPH-5DCD)

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

Programming

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

Web

CSS
\005DCD
HtmlDecimal
巍
HtmlHexadecimal
巍
Url
%E5%B7%8D

Code

MD5
656cfa60882e82111919791a058f0669
Sha1
c2ac7063466b83d23f0c3b9e8abaec446106ff15
Base64
5beN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DCD';
console.log(char);  // Output: 巍

Java:

char c = '\u5DCD';
System.out.println(c);  // Output: 巍

JSON:

{"text": "\u5DCD"}  // Value: 巍

Python:

char = '\u5DCD'
print(char)  # Output: 巍

Perl:

my $char = "\x{5DCD}";
print $char;  # Output: 巍

PHP:

$char = "\x{5DCD}";
echo $char;  // Output: 巍

Ruby:

char = "\u{5DCD}"
puts char  # Output: 巍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24013;</p>  <!-- Display: 巍 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DCD;</p>  <!-- Display: 巍 -->

URL Encoding:

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

Encodings

MD5:

656cfa60882e82111919791a058f0669

SHA1:

c2ac7063466b83d23f0c3b9e8abaec446106ff15

Base64:

5beN