Unicode Finder

"鳈" U+9CC8(CJK UNIFIED IDEOGRAPH-9CC8)

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

Programming

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

Web

CSS
\009CC8
HtmlDecimal
鳈
HtmlHexadecimal
鳈
Url
%E9%B3%88

Code

MD5
823ec33c0d8f9da8fa452124acbb6ddf
Sha1
c6effe1bc0eb98c3a707d67f705b41320759113f
Base64
6bOI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9CC8';
console.log(char);  // Output: 鳈

Java:

char c = '\u9CC8';
System.out.println(c);  // Output: 鳈

JSON:

{"text": "\u9CC8"}  // Value: 鳈

Python:

char = '\u9CC8'
print(char)  # Output: 鳈

Perl:

my $char = "\x{9CC8}";
print $char;  # Output: 鳈

PHP:

$char = "\x{9CC8}";
echo $char;  // Output: 鳈

Ruby:

char = "\u{9CC8}"
puts char  # Output: 鳈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40136;</p>  <!-- Display: 鳈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9CC8;</p>  <!-- Display: 鳈 -->

URL Encoding:

// 鳈 URL encoding
https://unicodefinder.com/search.php?query=%E9%B3%88

Encodings

MD5:

823ec33c0d8f9da8fa452124acbb6ddf

SHA1:

c6effe1bc0eb98c3a707d67f705b41320759113f

Base64:

6bOI