Unicode Finder

"攇" U+6507(CJK UNIFIED IDEOGRAPH-6507)

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

Programming

C
\u6507
JavaScript
\u6507
Java
\u6507
Json
\u6507
Python
\u6507
Perl
\x{6507}
PHP
\x{6507}
Ruby
\u{6507}
Rust
\u{6507}
Go
\u6507

Web

CSS
\006507
HtmlDecimal
攇
HtmlHexadecimal
攇
Url
%E6%94%87

Code

MD5
2d27e6ce690f0fe31eb504093b5c5750
Sha1
b7e1ce11d9ef3b0ba3bbc45125e8fab6d8ea6215
Base64
5pSH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6507';
console.log(char);  // Output: 攇

Java:

char c = '\u6507';
System.out.println(c);  // Output: 攇

JSON:

{"text": "\u6507"}  // Value: 攇

Python:

char = '\u6507'
print(char)  # Output: 攇

Perl:

my $char = "\x{6507}";
print $char;  # Output: 攇

PHP:

$char = "\x{6507}";
echo $char;  // Output: 攇

Ruby:

char = "\u{6507}"
puts char  # Output: 攇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006507";  /* Display: 攇 */
}

HTML Decimal:

<p>HTML decimal: &#25863;</p>  <!-- Display: 攇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6507;</p>  <!-- Display: 攇 -->

URL Encoding:

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

Encodings

MD5:

2d27e6ce690f0fe31eb504093b5c5750

SHA1:

b7e1ce11d9ef3b0ba3bbc45125e8fab6d8ea6215

Base64:

5pSH