Unicode Finder

"攨" U+6528(CJK UNIFIED IDEOGRAPH-6528)

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

Programming

C
\u6528
JavaScript
\u6528
Java
\u6528
Json
\u6528
Python
\u6528
Perl
\x{6528}
PHP
\x{6528}
Ruby
\u{6528}
Rust
\u{6528}
Go
\u6528

Web

CSS
\006528
HtmlDecimal
攨
HtmlHexadecimal
攨
Url
%E6%94%A8

Code

MD5
d5709ebd145fd930bb973364190fd6c9
Sha1
c9fb21e0491b99bd2477ffa3233f6a4ae7538470
Base64
5pSo

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6528';
console.log(char);  // Output: 攨

Java:

char c = '\u6528';
System.out.println(c);  // Output: 攨

JSON:

{"text": "\u6528"}  // Value: 攨

Python:

char = '\u6528'
print(char)  # Output: 攨

Perl:

my $char = "\x{6528}";
print $char;  # Output: 攨

PHP:

$char = "\x{6528}";
echo $char;  // Output: 攨

Ruby:

char = "\u{6528}"
puts char  # Output: 攨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006528";  /* Display: 攨 */
}

HTML Decimal:

<p>HTML decimal: &#25896;</p>  <!-- Display: 攨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6528;</p>  <!-- Display: 攨 -->

URL Encoding:

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

Encodings

MD5:

d5709ebd145fd930bb973364190fd6c9

SHA1:

c9fb21e0491b99bd2477ffa3233f6a4ae7538470

Base64:

5pSo