Unicode Finder

"鰗" U+9C17(CJK UNIFIED IDEOGRAPH-9C17)

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

Programming

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

Web

CSS
\009C17
HtmlDecimal
鰗
HtmlHexadecimal
鰗
Url
%E9%B0%97

Code

MD5
5bb97f15275c8247519b35c95c2cc776
Sha1
45344289aa685cd715ca1f967f3a4b382047b105
Base64
6bCX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C17';
console.log(char);  // Output: 鰗

Java:

char c = '\u9C17';
System.out.println(c);  // Output: 鰗

JSON:

{"text": "\u9C17"}  // Value: 鰗

Python:

char = '\u9C17'
print(char)  # Output: 鰗

Perl:

my $char = "\x{9C17}";
print $char;  # Output: 鰗

PHP:

$char = "\x{9C17}";
echo $char;  // Output: 鰗

Ruby:

char = "\u{9C17}"
puts char  # Output: 鰗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39959;</p>  <!-- Display: 鰗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C17;</p>  <!-- Display: 鰗 -->

URL Encoding:

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

Encodings

MD5:

5bb97f15275c8247519b35c95c2cc776

SHA1:

45344289aa685cd715ca1f967f3a4b382047b105

Base64:

6bCX