Unicode Finder

"攰" U+6530(CJK UNIFIED IDEOGRAPH-6530)

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

Programming

C
\u6530
JavaScript
\u6530
Java
\u6530
Json
\u6530
Python
\u6530
Perl
\x{6530}
PHP
\x{6530}
Ruby
\u{6530}
Rust
\u{6530}
Go
\u6530

Web

CSS
\006530
HtmlDecimal
攰
HtmlHexadecimal
攰
Url
%E6%94%B0

Code

MD5
784fb4fd3cdde50d46a7619067bf8fd6
Sha1
f52e33399f97b7ef95e236594406e952e80b9e5d
Base64
5pSw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6530';
console.log(char);  // Output: 攰

Java:

char c = '\u6530';
System.out.println(c);  // Output: 攰

JSON:

{"text": "\u6530"}  // Value: 攰

Python:

char = '\u6530'
print(char)  # Output: 攰

Perl:

my $char = "\x{6530}";
print $char;  # Output: 攰

PHP:

$char = "\x{6530}";
echo $char;  // Output: 攰

Ruby:

char = "\u{6530}"
puts char  # Output: 攰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006530";  /* Display: 攰 */
}

HTML Decimal:

<p>HTML decimal: &#25904;</p>  <!-- Display: 攰 -->

HTML Hexadecimal:

<p>HTML hex: &#x6530;</p>  <!-- Display: 攰 -->

URL Encoding:

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

Encodings

MD5:

784fb4fd3cdde50d46a7619067bf8fd6

SHA1:

f52e33399f97b7ef95e236594406e952e80b9e5d

Base64:

5pSw