Unicode Finder

"攒" U+6512(CJK UNIFIED IDEOGRAPH-6512)

U+6512
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-6512

Programming

C
\u6512
JavaScript
\u6512
Java
\u6512
Json
\u6512
Python
\u6512
Perl
\x{6512}
PHP
\x{6512}
Ruby
\u{6512}
Rust
\u{6512}
Go
\u6512

Web

CSS
\006512
HtmlDecimal
攒
HtmlHexadecimal
攒
Url
%E6%94%92

Code

MD5
8328c2a3ec1d0d7c73f691bff5a97da2
Sha1
3d05c064004fcfec42970ab0d6648daed2a9c519
Base64
5pSS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6512';
console.log(char);  // Output: 攒

Java:

char c = '\u6512';
System.out.println(c);  // Output: 攒

JSON:

{"text": "\u6512"}  // Value: 攒

Python:

char = '\u6512'
print(char)  # Output: 攒

Perl:

my $char = "\x{6512}";
print $char;  # Output: 攒

PHP:

$char = "\x{6512}";
echo $char;  // Output: 攒

Ruby:

char = "\u{6512}"
puts char  # Output: 攒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006512";  /* Display: 攒 */
}

HTML Decimal:

<p>HTML decimal: &#25874;</p>  <!-- Display: 攒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6512;</p>  <!-- Display: 攒 -->

URL Encoding:

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

Encodings

MD5:

8328c2a3ec1d0d7c73f691bff5a97da2

SHA1:

3d05c064004fcfec42970ab0d6648daed2a9c519

Base64:

5pSS