Unicode Finder

"攢" U+6522(CJK UNIFIED IDEOGRAPH-6522)

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

Programming

C
\u6522
JavaScript
\u6522
Java
\u6522
Json
\u6522
Python
\u6522
Perl
\x{6522}
PHP
\x{6522}
Ruby
\u{6522}
Rust
\u{6522}
Go
\u6522

Web

CSS
\006522
HtmlDecimal
攢
HtmlHexadecimal
攢
Url
%E6%94%A2

Code

MD5
6705ac50370e4f795da2b7bc9ac7ab4c
Sha1
e5ab4cffe54c93f74b65c2241b5f862561e832b5
Base64
5pSi

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6522';
console.log(char);  // Output: 攢

Java:

char c = '\u6522';
System.out.println(c);  // Output: 攢

JSON:

{"text": "\u6522"}  // Value: 攢

Python:

char = '\u6522'
print(char)  # Output: 攢

Perl:

my $char = "\x{6522}";
print $char;  # Output: 攢

PHP:

$char = "\x{6522}";
echo $char;  // Output: 攢

Ruby:

char = "\u{6522}"
puts char  # Output: 攢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006522";  /* Display: 攢 */
}

HTML Decimal:

<p>HTML decimal: &#25890;</p>  <!-- Display: 攢 -->

HTML Hexadecimal:

<p>HTML hex: &#x6522;</p>  <!-- Display: 攢 -->

URL Encoding:

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

Encodings

MD5:

6705ac50370e4f795da2b7bc9ac7ab4c

SHA1:

e5ab4cffe54c93f74b65c2241b5f862561e832b5

Base64:

5pSi