Unicode Finder

"捗" U+6357(CJK UNIFIED IDEOGRAPH-6357)

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

Programming

C
\u6357
JavaScript
\u6357
Java
\u6357
Json
\u6357
Python
\u6357
Perl
\x{6357}
PHP
\x{6357}
Ruby
\u{6357}
Rust
\u{6357}
Go
\u6357

Web

CSS
\006357
HtmlDecimal
捗
HtmlHexadecimal
捗
Url
%E6%8D%97

Code

MD5
ae705b818b3266ff47c9bef54d63cadb
Sha1
aba1b06bab5d45e7ab8032f31c92a3c065e0111d
Base64
5o2X

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6357';
console.log(char);  // Output: 捗

Java:

char c = '\u6357';
System.out.println(c);  // Output: 捗

JSON:

{"text": "\u6357"}  // Value: 捗

Python:

char = '\u6357'
print(char)  # Output: 捗

Perl:

my $char = "\x{6357}";
print $char;  # Output: 捗

PHP:

$char = "\x{6357}";
echo $char;  // Output: 捗

Ruby:

char = "\u{6357}"
puts char  # Output: 捗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006357";  /* Display: 捗 */
}

HTML Decimal:

<p>HTML decimal: &#25431;</p>  <!-- Display: 捗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6357;</p>  <!-- Display: 捗 -->

URL Encoding:

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

Encodings

MD5:

ae705b818b3266ff47c9bef54d63cadb

SHA1:

aba1b06bab5d45e7ab8032f31c92a3c065e0111d

Base64:

5o2X