Unicode Finder

"巸" U+5DF8(CJK UNIFIED IDEOGRAPH-5DF8)

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

Programming

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

Web

CSS
\005DF8
HtmlDecimal
巸
HtmlHexadecimal
巸
Url
%E5%B7%B8

Code

MD5
544a0b9cad49161abf3ddc961ff6ecd8
Sha1
e25b93c729eea09d294d69ec51dded6e3f4f6a22
Base64
5be4

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5DF8';
console.log(char);  // Output: 巸

Java:

char c = '\u5DF8';
System.out.println(c);  // Output: 巸

JSON:

{"text": "\u5DF8"}  // Value: 巸

Python:

char = '\u5DF8'
print(char)  # Output: 巸

Perl:

my $char = "\x{5DF8}";
print $char;  # Output: 巸

PHP:

$char = "\x{5DF8}";
echo $char;  // Output: 巸

Ruby:

char = "\u{5DF8}"
puts char  # Output: 巸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24056;</p>  <!-- Display: 巸 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DF8;</p>  <!-- Display: 巸 -->

URL Encoding:

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

Encodings

MD5:

544a0b9cad49161abf3ddc961ff6ecd8

SHA1:

e25b93c729eea09d294d69ec51dded6e3f4f6a22

Base64:

5be4