Unicode Finder

"捷" U+6377(CJK UNIFIED IDEOGRAPH-6377)

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

Programming

C
\u6377
JavaScript
\u6377
Java
\u6377
Json
\u6377
Python
\u6377
Perl
\x{6377}
PHP
\x{6377}
Ruby
\u{6377}
Rust
\u{6377}
Go
\u6377

Web

CSS
\006377
HtmlDecimal
捷
HtmlHexadecimal
捷
Url
%E6%8D%B7

Code

MD5
881fa39627c4ee563ca4d31c2fc858de
Sha1
9f8faa6a4e9172d2d88c92d56864daf95a72d15a
Base64
5o23

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6377';
console.log(char);  // Output: 捷

Java:

char c = '\u6377';
System.out.println(c);  // Output: 捷

JSON:

{"text": "\u6377"}  // Value: 捷

Python:

char = '\u6377'
print(char)  # Output: 捷

Perl:

my $char = "\x{6377}";
print $char;  # Output: 捷

PHP:

$char = "\x{6377}";
echo $char;  // Output: 捷

Ruby:

char = "\u{6377}"
puts char  # Output: 捷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006377";  /* Display: 捷 */
}

HTML Decimal:

<p>HTML decimal: &#25463;</p>  <!-- Display: 捷 -->

HTML Hexadecimal:

<p>HTML hex: &#x6377;</p>  <!-- Display: 捷 -->

URL Encoding:

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

Encodings

MD5:

881fa39627c4ee563ca4d31c2fc858de

SHA1:

9f8faa6a4e9172d2d88c92d56864daf95a72d15a

Base64:

5o23