Unicode Finder

"攣" U+6523(CJK UNIFIED IDEOGRAPH-6523)

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

Programming

C
\u6523
JavaScript
\u6523
Java
\u6523
Json
\u6523
Python
\u6523
Perl
\x{6523}
PHP
\x{6523}
Ruby
\u{6523}
Rust
\u{6523}
Go
\u6523

Web

CSS
\006523
HtmlDecimal
攣
HtmlHexadecimal
攣
Url
%E6%94%A3

Code

MD5
2bdf59404c4b6a769e9ce5e02b0eb921
Sha1
c43720496d16c5e3c4515eb0dbf9be36206c4707
Base64
5pSj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6523';
console.log(char);  // Output: 攣

Java:

char c = '\u6523';
System.out.println(c);  // Output: 攣

JSON:

{"text": "\u6523"}  // Value: 攣

Python:

char = '\u6523'
print(char)  # Output: 攣

Perl:

my $char = "\x{6523}";
print $char;  # Output: 攣

PHP:

$char = "\x{6523}";
echo $char;  // Output: 攣

Ruby:

char = "\u{6523}"
puts char  # Output: 攣

Rust:

let c = '\u{6523}';
println!("{}", c);  // Output: 攣

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006523";  /* Display: 攣 */
}

HTML Decimal:

<p>HTML decimal: &#25891;</p>  <!-- Display: 攣 -->

HTML Hexadecimal:

<p>HTML hex: &#x6523;</p>  <!-- Display: 攣 -->

URL Encoding:

// 攣 URL encoding
https://unicodefinder.com/search.php?query=%E6%94%A3

Encodings

MD5:

2bdf59404c4b6a769e9ce5e02b0eb921

SHA1:

c43720496d16c5e3c4515eb0dbf9be36206c4707

Base64:

5pSj