Unicode Finder

"捠" U+6360(CJK UNIFIED IDEOGRAPH-6360)

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

Programming

C
\u6360
JavaScript
\u6360
Java
\u6360
Json
\u6360
Python
\u6360
Perl
\x{6360}
PHP
\x{6360}
Ruby
\u{6360}
Rust
\u{6360}
Go
\u6360

Web

CSS
\006360
HtmlDecimal
捠
HtmlHexadecimal
捠
Url
%E6%8D%A0

Code

MD5
bd85748248563a9f8575c9cbf0de9e30
Sha1
11f34f3e4f87081ee7e52e7223f3e18fadaa8fe6
Base64
5o2g

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6360';
console.log(char);  // Output: 捠

Java:

char c = '\u6360';
System.out.println(c);  // Output: 捠

JSON:

{"text": "\u6360"}  // Value: 捠

Python:

char = '\u6360'
print(char)  # Output: 捠

Perl:

my $char = "\x{6360}";
print $char;  # Output: 捠

PHP:

$char = "\x{6360}";
echo $char;  // Output: 捠

Ruby:

char = "\u{6360}"
puts char  # Output: 捠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006360";  /* Display: 捠 */
}

HTML Decimal:

<p>HTML decimal: &#25440;</p>  <!-- Display: 捠 -->

HTML Hexadecimal:

<p>HTML hex: &#x6360;</p>  <!-- Display: 捠 -->

URL Encoding:

// 捠 URL encoding
https://unicodefinder.com/search.php?query=%E6%8D%A0

Encodings

MD5:

bd85748248563a9f8575c9cbf0de9e30

SHA1:

11f34f3e4f87081ee7e52e7223f3e18fadaa8fe6

Base64:

5o2g