Unicode Finder

"巼" U+5DFC(CJK UNIFIED IDEOGRAPH-5DFC)

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

Programming

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

Web

CSS
\005DFC
HtmlDecimal
巼
HtmlHexadecimal
巼
Url
%E5%B7%BC

Code

MD5
f96500142dac9398ab74da9f61174487
Sha1
7c19daf9fbdd95d7a9b65a157c96e272d941f940
Base64
5be8

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5DFC';
console.log(char);  // Output: 巼

Java:

char c = '\u5DFC';
System.out.println(c);  // Output: 巼

JSON:

{"text": "\u5DFC"}  // Value: 巼

Python:

char = '\u5DFC'
print(char)  # Output: 巼

Perl:

my $char = "\x{5DFC}";
print $char;  # Output: 巼

PHP:

$char = "\x{5DFC}";
echo $char;  // Output: 巼

Ruby:

char = "\u{5DFC}"
puts char  # Output: 巼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24060;</p>  <!-- Display: 巼 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DFC;</p>  <!-- Display: 巼 -->

URL Encoding:

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

Encodings

MD5:

f96500142dac9398ab74da9f61174487

SHA1:

7c19daf9fbdd95d7a9b65a157c96e272d941f940

Base64:

5be8