Unicode Finder

"捸" U+6378(CJK UNIFIED IDEOGRAPH-6378)

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

Programming

C
\u6378
JavaScript
\u6378
Java
\u6378
Json
\u6378
Python
\u6378
Perl
\x{6378}
PHP
\x{6378}
Ruby
\u{6378}
Rust
\u{6378}
Go
\u6378

Web

CSS
\006378
HtmlDecimal
捸
HtmlHexadecimal
捸
Url
%E6%8D%B8

Code

MD5
7047a402bd17f767b4904f5be6643421
Sha1
4c807ca6ab5e368fd2fd766657eb00f51151f314
Base64
5o24

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6378';
console.log(char);  // Output: 捸

Java:

char c = '\u6378';
System.out.println(c);  // Output: 捸

JSON:

{"text": "\u6378"}  // Value: 捸

Python:

char = '\u6378'
print(char)  # Output: 捸

Perl:

my $char = "\x{6378}";
print $char;  # Output: 捸

PHP:

$char = "\x{6378}";
echo $char;  // Output: 捸

Ruby:

char = "\u{6378}"
puts char  # Output: 捸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006378";  /* Display: 捸 */
}

HTML Decimal:

<p>HTML decimal: &#25464;</p>  <!-- Display: 捸 -->

HTML Hexadecimal:

<p>HTML hex: &#x6378;</p>  <!-- Display: 捸 -->

URL Encoding:

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

Encodings

MD5:

7047a402bd17f767b4904f5be6643421

SHA1:

4c807ca6ab5e368fd2fd766657eb00f51151f314

Base64:

5o24