Unicode Finder

"鲗" U+9C97(CJK UNIFIED IDEOGRAPH-9C97)

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

Programming

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

Web

CSS
\009C97
HtmlDecimal
鲗
HtmlHexadecimal
鲗
Url
%E9%B2%97

Code

MD5
5dcf317725d400793fb7132d47c5ec06
Sha1
73a290f6deba94327698eed340ed8e9c933a5642
Base64
6bKX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C97';
console.log(char);  // Output: 鲗

Java:

char c = '\u9C97';
System.out.println(c);  // Output: 鲗

JSON:

{"text": "\u9C97"}  // Value: 鲗

Python:

char = '\u9C97'
print(char)  # Output: 鲗

Perl:

my $char = "\x{9C97}";
print $char;  # Output: 鲗

PHP:

$char = "\x{9C97}";
echo $char;  // Output: 鲗

Ruby:

char = "\u{9C97}"
puts char  # Output: 鲗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40087;</p>  <!-- Display: 鲗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C97;</p>  <!-- Display: 鲗 -->

URL Encoding:

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

Encodings

MD5:

5dcf317725d400793fb7132d47c5ec06

SHA1:

73a290f6deba94327698eed340ed8e9c933a5642

Base64:

6bKX