Unicode Finder

"鳇" U+9CC7(CJK UNIFIED IDEOGRAPH-9CC7)

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

Programming

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

Web

CSS
\009CC7
HtmlDecimal
鳇
HtmlHexadecimal
鳇
Url
%E9%B3%87

Code

MD5
0974f297054d549a5847577ec8cb56c0
Sha1
a71cf9c724e18b780bc6d41212e6a841ac59a48a
Base64
6bOH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9CC7';
console.log(char);  // Output: 鳇

Java:

char c = '\u9CC7';
System.out.println(c);  // Output: 鳇

JSON:

{"text": "\u9CC7"}  // Value: 鳇

Python:

char = '\u9CC7'
print(char)  # Output: 鳇

Perl:

my $char = "\x{9CC7}";
print $char;  # Output: 鳇

PHP:

$char = "\x{9CC7}";
echo $char;  // Output: 鳇

Ruby:

char = "\u{9CC7}"
puts char  # Output: 鳇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40135;</p>  <!-- Display: 鳇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9CC7;</p>  <!-- Display: 鳇 -->

URL Encoding:

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

Encodings

MD5:

0974f297054d549a5847577ec8cb56c0

SHA1:

a71cf9c724e18b780bc6d41212e6a841ac59a48a

Base64:

6bOH