Unicode Finder

"捼" U+637C(CJK UNIFIED IDEOGRAPH-637C)

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

Programming

C
\u637C
JavaScript
\u637C
Java
\u637C
Json
\u637C
Python
\u637C
Perl
\x{637C}
PHP
\x{637C}
Ruby
\u{637C}
Rust
\u{637C}
Go
\u637C

Web

CSS
\00637C
HtmlDecimal
捼
HtmlHexadecimal
捼
Url
%E6%8D%BC

Code

MD5
0416a102f0d5bad7a4ac21f602c10024
Sha1
f0ee6ade7a12c89fc80334774ccde68a3fcdb142
Base64
5o28

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u637C';
console.log(char);  // Output: 捼

Java:

char c = '\u637C';
System.out.println(c);  // Output: 捼

JSON:

{"text": "\u637C"}  // Value: 捼

Python:

char = '\u637C'
print(char)  # Output: 捼

Perl:

my $char = "\x{637C}";
print $char;  # Output: 捼

PHP:

$char = "\x{637C}";
echo $char;  // Output: 捼

Ruby:

char = "\u{637C}"
puts char  # Output: 捼

Rust:

let c = '\u{637C}';
println!("{}", c);  // Output: 捼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00637C";  /* Display: 捼 */
}

HTML Decimal:

<p>HTML decimal: &#25468;</p>  <!-- Display: 捼 -->

HTML Hexadecimal:

<p>HTML hex: &#x637C;</p>  <!-- Display: 捼 -->

URL Encoding:

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

Encodings

MD5:

0416a102f0d5bad7a4ac21f602c10024

SHA1:

f0ee6ade7a12c89fc80334774ccde68a3fcdb142

Base64:

5o28