Unicode Finder

"攑" U+6511(CJK UNIFIED IDEOGRAPH-6511)

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

Programming

C
\u6511
JavaScript
\u6511
Java
\u6511
Json
\u6511
Python
\u6511
Perl
\x{6511}
PHP
\x{6511}
Ruby
\u{6511}
Rust
\u{6511}
Go
\u6511

Web

CSS
\006511
HtmlDecimal
攑
HtmlHexadecimal
攑
Url
%E6%94%91

Code

MD5
393eae82c5f398ea512e4c3307615a88
Sha1
a395aadec6ef876e4055c5f831fcd2b6e88736fb
Base64
5pSR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6511';
console.log(char);  // Output: 攑

Java:

char c = '\u6511';
System.out.println(c);  // Output: 攑

JSON:

{"text": "\u6511"}  // Value: 攑

Python:

char = '\u6511'
print(char)  # Output: 攑

Perl:

my $char = "\x{6511}";
print $char;  # Output: 攑

PHP:

$char = "\x{6511}";
echo $char;  // Output: 攑

Ruby:

char = "\u{6511}"
puts char  # Output: 攑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006511";  /* Display: 攑 */
}

HTML Decimal:

<p>HTML decimal: &#25873;</p>  <!-- Display: 攑 -->

HTML Hexadecimal:

<p>HTML hex: &#x6511;</p>  <!-- Display: 攑 -->

URL Encoding:

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

Encodings

MD5:

393eae82c5f398ea512e4c3307615a88

SHA1:

a395aadec6ef876e4055c5f831fcd2b6e88736fb

Base64:

5pSR