Unicode Finder

"鰲" U+9C32(CJK UNIFIED IDEOGRAPH-9C32)

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

Programming

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

Web

CSS
\009C32
HtmlDecimal
鰲
HtmlHexadecimal
鰲
Url
%E9%B0%B2

Code

MD5
c4409a66ab88ae302ecb1c66b0394b94
Sha1
cab6710427bcf5f77485540241f5084967ef19af
Base64
6bCy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C32';
console.log(char);  // Output: 鰲

Java:

char c = '\u9C32';
System.out.println(c);  // Output: 鰲

JSON:

{"text": "\u9C32"}  // Value: 鰲

Python:

char = '\u9C32'
print(char)  # Output: 鰲

Perl:

my $char = "\x{9C32}";
print $char;  # Output: 鰲

PHP:

$char = "\x{9C32}";
echo $char;  // Output: 鰲

Ruby:

char = "\u{9C32}"
puts char  # Output: 鰲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39986;</p>  <!-- Display: 鰲 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C32;</p>  <!-- Display: 鰲 -->

URL Encoding:

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

Encodings

MD5:

c4409a66ab88ae302ecb1c66b0394b94

SHA1:

cab6710427bcf5f77485540241f5084967ef19af

Base64:

6bCy