Unicode Finder

"鰅" U+9C05(CJK UNIFIED IDEOGRAPH-9C05)

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

Programming

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

Web

CSS
\009C05
HtmlDecimal
鰅
HtmlHexadecimal
鰅
Url
%E9%B0%85

Code

MD5
f902288d5ac71a5dca28551c8db04a2f
Sha1
e0e80932d25a7373b1c0d02b12702ae6cd827ef5
Base64
6bCF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C05';
console.log(char);  // Output: 鰅

Java:

char c = '\u9C05';
System.out.println(c);  // Output: 鰅

JSON:

{"text": "\u9C05"}  // Value: 鰅

Python:

char = '\u9C05'
print(char)  # Output: 鰅

Perl:

my $char = "\x{9C05}";
print $char;  # Output: 鰅

PHP:

$char = "\x{9C05}";
echo $char;  // Output: 鰅

Ruby:

char = "\u{9C05}"
puts char  # Output: 鰅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39941;</p>  <!-- Display: 鰅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C05;</p>  <!-- Display: 鰅 -->

URL Encoding:

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

Encodings

MD5:

f902288d5ac71a5dca28551c8db04a2f

SHA1:

e0e80932d25a7373b1c0d02b12702ae6cd827ef5

Base64:

6bCF