Unicode Finder

"鰘" U+9C18(CJK UNIFIED IDEOGRAPH-9C18)

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

Programming

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

Web

CSS
\009C18
HtmlDecimal
鰘
HtmlHexadecimal
鰘
Url
%E9%B0%98

Code

MD5
7b92f8d99c527ede78d5c23b1e94e51f
Sha1
37a9f977ba61ef960e27760248e68060e93858f5
Base64
6bCY

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C18';
console.log(char);  // Output: 鰘

Java:

char c = '\u9C18';
System.out.println(c);  // Output: 鰘

JSON:

{"text": "\u9C18"}  // Value: 鰘

Python:

char = '\u9C18'
print(char)  # Output: 鰘

Perl:

my $char = "\x{9C18}";
print $char;  # Output: 鰘

PHP:

$char = "\x{9C18}";
echo $char;  // Output: 鰘

Ruby:

char = "\u{9C18}"
puts char  # Output: 鰘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39960;</p>  <!-- Display: 鰘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C18;</p>  <!-- Display: 鰘 -->

URL Encoding:

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

Encodings

MD5:

7b92f8d99c527ede78d5c23b1e94e51f

SHA1:

37a9f977ba61ef960e27760248e68060e93858f5

Base64:

6bCY