Unicode Finder

"捜" U+635C(CJK UNIFIED IDEOGRAPH-635C)

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

Programming

C
\u635C
JavaScript
\u635C
Java
\u635C
Json
\u635C
Python
\u635C
Perl
\x{635C}
PHP
\x{635C}
Ruby
\u{635C}
Rust
\u{635C}
Go
\u635C

Web

CSS
\00635C
HtmlDecimal
捜
HtmlHexadecimal
捜
Url
%E6%8D%9C

Code

MD5
37ab5cf7ae262fe50db9af66df90eca3
Sha1
ea988edc2246b1d8e1d0a2bc6ac4ca7f0de3bf66
Base64
5o2c

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u635C';
console.log(char);  // Output: 捜

Java:

char c = '\u635C';
System.out.println(c);  // Output: 捜

JSON:

{"text": "\u635C"}  // Value: 捜

Python:

char = '\u635C'
print(char)  # Output: 捜

Perl:

my $char = "\x{635C}";
print $char;  # Output: 捜

PHP:

$char = "\x{635C}";
echo $char;  // Output: 捜

Ruby:

char = "\u{635C}"
puts char  # Output: 捜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25436;</p>  <!-- Display: 捜 -->

HTML Hexadecimal:

<p>HTML hex: &#x635C;</p>  <!-- Display: 捜 -->

URL Encoding:

// 捜 URL encoding
https://unicodefinder.com/search.php?query=%E6%8D%9C

Encodings

MD5:

37ab5cf7ae262fe50db9af66df90eca3

SHA1:

ea988edc2246b1d8e1d0a2bc6ac4ca7f0de3bf66

Base64:

5o2c