Unicode Finder

"旋" U+65CB(CJK UNIFIED IDEOGRAPH-65CB)

U+65CB
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-65CB

Programming

C
\u65CB
JavaScript
\u65CB
Java
\u65CB
Json
\u65CB
Python
\u65CB
Perl
\x{65CB}
PHP
\x{65CB}
Ruby
\u{65CB}
Rust
\u{65CB}
Go
\u65CB

Web

CSS
\0065CB
HtmlDecimal
旋
HtmlHexadecimal
旋
Url
%E6%97%8B

Code

MD5
ae8030c22a88223bb305685c1ced49c0
Sha1
902aee76d6e042ee1d387379839f6c89ae2c6063
Base64
5peL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u65CB';
console.log(char);  // Output: 旋

Java:

char c = '\u65CB';
System.out.println(c);  // Output: 旋

JSON:

{"text": "\u65CB"}  // Value: 旋

Python:

char = '\u65CB'
print(char)  # Output: 旋

Perl:

my $char = "\x{65CB}";
print $char;  # Output: 旋

PHP:

$char = "\x{65CB}";
echo $char;  // Output: 旋

Ruby:

char = "\u{65CB}"
puts char  # Output: 旋

Rust:

let c = '\u{65CB}';
println!("{}", c);  // Output: 旋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0065CB";  /* Display: 旋 */
}

HTML Decimal:

<p>HTML decimal: &#26059;</p>  <!-- Display: 旋 -->

HTML Hexadecimal:

<p>HTML hex: &#x65CB;</p>  <!-- Display: 旋 -->

URL Encoding:

// 旋 URL encoding
https://unicodefinder.com/search.php?query=%E6%97%8B

Encodings

MD5:

ae8030c22a88223bb305685c1ced49c0

SHA1:

902aee76d6e042ee1d387379839f6c89ae2c6063

Base64:

5peL