Unicode Finder

"巽" U+5DFD(CJK UNIFIED IDEOGRAPH-5DFD)

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

Programming

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

Web

CSS
\005DFD
HtmlDecimal
巽
HtmlHexadecimal
巽
Url
%E5%B7%BD

Code

MD5
6dc848898b67d4f51c08af56d4fecbe9
Sha1
1c23f5d646eefc357293c6e05152f2b4dff3a3bc
Base64
5be9

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DFD';
console.log(char);  // Output: 巽

Java:

char c = '\u5DFD';
System.out.println(c);  // Output: 巽

JSON:

{"text": "\u5DFD"}  // Value: 巽

Python:

char = '\u5DFD'
print(char)  # Output: 巽

Perl:

my $char = "\x{5DFD}";
print $char;  # Output: 巽

PHP:

$char = "\x{5DFD}";
echo $char;  // Output: 巽

Ruby:

char = "\u{5DFD}"
puts char  # Output: 巽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24061;</p>  <!-- Display: 巽 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DFD;</p>  <!-- Display: 巽 -->

URL Encoding:

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

Encodings

MD5:

6dc848898b67d4f51c08af56d4fecbe9

SHA1:

1c23f5d646eefc357293c6e05152f2b4dff3a3bc

Base64:

5be9