Unicode Finder

"攤" U+6524(CJK UNIFIED IDEOGRAPH-6524)

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

Programming

C
\u6524
JavaScript
\u6524
Java
\u6524
Json
\u6524
Python
\u6524
Perl
\x{6524}
PHP
\x{6524}
Ruby
\u{6524}
Rust
\u{6524}
Go
\u6524

Web

CSS
\006524
HtmlDecimal
攤
HtmlHexadecimal
攤
Url
%E6%94%A4

Code

MD5
fdeed6a81478f2d61e280e5e999d98b4
Sha1
c8eb52b95527c006145ada60c3b6213faf042ca2
Base64
5pSk

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6524';
console.log(char);  // Output: 攤

Java:

char c = '\u6524';
System.out.println(c);  // Output: 攤

JSON:

{"text": "\u6524"}  // Value: 攤

Python:

char = '\u6524'
print(char)  # Output: 攤

Perl:

my $char = "\x{6524}";
print $char;  # Output: 攤

PHP:

$char = "\x{6524}";
echo $char;  // Output: 攤

Ruby:

char = "\u{6524}"
puts char  # Output: 攤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006524";  /* Display: 攤 */
}

HTML Decimal:

<p>HTML decimal: &#25892;</p>  <!-- Display: 攤 -->

HTML Hexadecimal:

<p>HTML hex: &#x6524;</p>  <!-- Display: 攤 -->

URL Encoding:

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

Encodings

MD5:

fdeed6a81478f2d61e280e5e999d98b4

SHA1:

c8eb52b95527c006145ada60c3b6213faf042ca2

Base64:

5pSk