Unicode Finder

"鱗" U+9C57(CJK UNIFIED IDEOGRAPH-9C57)

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

Programming

C
\u9C57
JavaScript
\u9C57
Java
\u9C57
Json
\u9C57
Python
\u9C57
Perl
\x{9C57}
PHP
\x{9C57}
Ruby
\u{9C57}
Rust
\u{9C57}
Go
\u9C57

Web

CSS
\009C57
HtmlDecimal
鱗
HtmlHexadecimal
鱗
Url
%E9%B1%97

Code

MD5
c436935a93506e0865eee3b639cdf767
Sha1
84c9790333aeb09e844a1240cdf47455941c4911
Base64
6bGX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C57';
console.log(char);  // Output: 鱗

Java:

char c = '\u9C57';
System.out.println(c);  // Output: 鱗

JSON:

{"text": "\u9C57"}  // Value: 鱗

Python:

char = '\u9C57'
print(char)  # Output: 鱗

Perl:

my $char = "\x{9C57}";
print $char;  # Output: 鱗

PHP:

$char = "\x{9C57}";
echo $char;  // Output: 鱗

Ruby:

char = "\u{9C57}"
puts char  # Output: 鱗

Rust:

let c = '\u{9C57}';
println!("{}", c);  // Output: 鱗

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009C57";  /* Display: 鱗 */
}

HTML Decimal:

<p>HTML decimal: &#40023;</p>  <!-- Display: 鱗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C57;</p>  <!-- Display: 鱗 -->

URL Encoding:

// 鱗 URL encoding
https://unicodefinder.com/search.php?query=%E9%B1%97

Encodings

MD5:

c436935a93506e0865eee3b639cdf767

SHA1:

84c9790333aeb09e844a1240cdf47455941c4911

Base64:

6bGX