Unicode Finder

"鳐" U+9CD0(CJK UNIFIED IDEOGRAPH-9CD0)

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

Programming

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

Web

CSS
\009CD0
HtmlDecimal
鳐
HtmlHexadecimal
鳐
Url
%E9%B3%90

Code

MD5
54199c2afee716f813d04529788c2358
Sha1
a7eb51fd5884beec0cf545ca021e96238e3ce1a5
Base64
6bOQ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9CD0';
console.log(char);  // Output: 鳐

Java:

char c = '\u9CD0';
System.out.println(c);  // Output: 鳐

JSON:

{"text": "\u9CD0"}  // Value: 鳐

Python:

char = '\u9CD0'
print(char)  # Output: 鳐

Perl:

my $char = "\x{9CD0}";
print $char;  # Output: 鳐

PHP:

$char = "\x{9CD0}";
echo $char;  // Output: 鳐

Ruby:

char = "\u{9CD0}"
puts char  # Output: 鳐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40144;</p>  <!-- Display: 鳐 -->

HTML Hexadecimal:

<p>HTML hex: &#x9CD0;</p>  <!-- Display: 鳐 -->

URL Encoding:

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

Encodings

MD5:

54199c2afee716f813d04529788c2358

SHA1:

a7eb51fd5884beec0cf545ca021e96238e3ce1a5

Base64:

6bOQ