Unicode Finder

"巶" U+5DF6(CJK UNIFIED IDEOGRAPH-5DF6)

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

Programming

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

Web

CSS
\005DF6
HtmlDecimal
巶
HtmlHexadecimal
巶
Url
%E5%B7%B6

Code

MD5
fc2d95e86f720aab705624e985970244
Sha1
cb49c91899d609808c0b76378eb4d7a1d91ff93e
Base64
5be2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DF6';
console.log(char);  // Output: 巶

Java:

char c = '\u5DF6';
System.out.println(c);  // Output: 巶

JSON:

{"text": "\u5DF6"}  // Value: 巶

Python:

char = '\u5DF6'
print(char)  # Output: 巶

Perl:

my $char = "\x{5DF6}";
print $char;  # Output: 巶

PHP:

$char = "\x{5DF6}";
echo $char;  // Output: 巶

Ruby:

char = "\u{5DF6}"
puts char  # Output: 巶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24054;</p>  <!-- Display: 巶 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DF6;</p>  <!-- Display: 巶 -->

URL Encoding:

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

Encodings

MD5:

fc2d95e86f720aab705624e985970244

SHA1:

cb49c91899d609808c0b76378eb4d7a1d91ff93e

Base64:

5be2