Unicode Finder

"攱" U+6531(CJK UNIFIED IDEOGRAPH-6531)

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

Programming

C
\u6531
JavaScript
\u6531
Java
\u6531
Json
\u6531
Python
\u6531
Perl
\x{6531}
PHP
\x{6531}
Ruby
\u{6531}
Rust
\u{6531}
Go
\u6531

Web

CSS
\006531
HtmlDecimal
攱
HtmlHexadecimal
攱
Url
%E6%94%B1

Code

MD5
d87412320fc4b30a6bdc7fc7a4895aec
Sha1
9fe93a5bd6dc8a54cb4b55aace500d358c44428a
Base64
5pSx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6531';
console.log(char);  // Output: 攱

Java:

char c = '\u6531';
System.out.println(c);  // Output: 攱

JSON:

{"text": "\u6531"}  // Value: 攱

Python:

char = '\u6531'
print(char)  # Output: 攱

Perl:

my $char = "\x{6531}";
print $char;  # Output: 攱

PHP:

$char = "\x{6531}";
echo $char;  // Output: 攱

Ruby:

char = "\u{6531}"
puts char  # Output: 攱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006531";  /* Display: 攱 */
}

HTML Decimal:

<p>HTML decimal: &#25905;</p>  <!-- Display: 攱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6531;</p>  <!-- Display: 攱 -->

URL Encoding:

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

Encodings

MD5:

d87412320fc4b30a6bdc7fc7a4895aec

SHA1:

9fe93a5bd6dc8a54cb4b55aace500d358c44428a

Base64:

5pSx