Unicode Finder

"捔" U+6354(CJK UNIFIED IDEOGRAPH-6354)

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

Programming

C
\u6354
JavaScript
\u6354
Java
\u6354
Json
\u6354
Python
\u6354
Perl
\x{6354}
PHP
\x{6354}
Ruby
\u{6354}
Rust
\u{6354}
Go
\u6354

Web

CSS
\006354
HtmlDecimal
捔
HtmlHexadecimal
捔
Url
%E6%8D%94

Code

MD5
18f9923bba7db71b865ccac1ea005b7f
Sha1
c2f9bad180f4e833026365d628dd372d49b4d5dd
Base64
5o2U

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6354';
console.log(char);  // Output: 捔

Java:

char c = '\u6354';
System.out.println(c);  // Output: 捔

JSON:

{"text": "\u6354"}  // Value: 捔

Python:

char = '\u6354'
print(char)  # Output: 捔

Perl:

my $char = "\x{6354}";
print $char;  # Output: 捔

PHP:

$char = "\x{6354}";
echo $char;  // Output: 捔

Ruby:

char = "\u{6354}"
puts char  # Output: 捔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006354";  /* Display: 捔 */
}

HTML Decimal:

<p>HTML decimal: &#25428;</p>  <!-- Display: 捔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6354;</p>  <!-- Display: 捔 -->

URL Encoding:

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

Encodings

MD5:

18f9923bba7db71b865ccac1ea005b7f

SHA1:

c2f9bad180f4e833026365d628dd372d49b4d5dd

Base64:

5o2U