Unicode Finder

"捑" U+6351(CJK UNIFIED IDEOGRAPH-6351)

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

Programming

C
\u6351
JavaScript
\u6351
Java
\u6351
Json
\u6351
Python
\u6351
Perl
\x{6351}
PHP
\x{6351}
Ruby
\u{6351}
Rust
\u{6351}
Go
\u6351

Web

CSS
\006351
HtmlDecimal
捑
HtmlHexadecimal
捑
Url
%E6%8D%91

Code

MD5
2a6c40ae879f3aa69c5b51f202cbc50d
Sha1
95379099430f89faedda0b817cf6e74779be53b9
Base64
5o2R

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6351';
console.log(char);  // Output: 捑

Java:

char c = '\u6351';
System.out.println(c);  // Output: 捑

JSON:

{"text": "\u6351"}  // Value: 捑

Python:

char = '\u6351'
print(char)  # Output: 捑

Perl:

my $char = "\x{6351}";
print $char;  # Output: 捑

PHP:

$char = "\x{6351}";
echo $char;  // Output: 捑

Ruby:

char = "\u{6351}"
puts char  # Output: 捑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006351";  /* Display: 捑 */
}

HTML Decimal:

<p>HTML decimal: &#25425;</p>  <!-- Display: 捑 -->

HTML Hexadecimal:

<p>HTML hex: &#x6351;</p>  <!-- Display: 捑 -->

URL Encoding:

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

Encodings

MD5:

2a6c40ae879f3aa69c5b51f202cbc50d

SHA1:

95379099430f89faedda0b817cf6e74779be53b9

Base64:

5o2R