Unicode Finder

"巚" U+5DDA(CJK UNIFIED IDEOGRAPH-5DDA)

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

Programming

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

Web

CSS
\005DDA
HtmlDecimal
巚
HtmlHexadecimal
巚
Url
%E5%B7%9A

Code

MD5
46be756fd1d03b2bda6106e55f8a4357
Sha1
7ebd6e7b5df6f8809d80e9907aff87d4441ebed6
Base64
5bea

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5DDA';
console.log(char);  // Output: 巚

Java:

char c = '\u5DDA';
System.out.println(c);  // Output: 巚

JSON:

{"text": "\u5DDA"}  // Value: 巚

Python:

char = '\u5DDA'
print(char)  # Output: 巚

Perl:

my $char = "\x{5DDA}";
print $char;  # Output: 巚

PHP:

$char = "\x{5DDA}";
echo $char;  // Output: 巚

Ruby:

char = "\u{5DDA}"
puts char  # Output: 巚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24026;</p>  <!-- Display: 巚 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DDA;</p>  <!-- Display: 巚 -->

URL Encoding:

// 巚 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%9A

Encodings

MD5:

46be756fd1d03b2bda6106e55f8a4357

SHA1:

7ebd6e7b5df6f8809d80e9907aff87d4441ebed6

Base64:

5bea