Unicode Finder

"鰩" U+9C29(CJK UNIFIED IDEOGRAPH-9C29)

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

Programming

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

Web

CSS
\009C29
HtmlDecimal
鰩
HtmlHexadecimal
鰩
Url
%E9%B0%A9

Code

MD5
e04eeb9a36b9e05727b9f0cd9cdb3472
Sha1
d57f9ee7d209ecb10727488140f5a2eafb8cacb5
Base64
6bCp

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C29';
console.log(char);  // Output: 鰩

Java:

char c = '\u9C29';
System.out.println(c);  // Output: 鰩

JSON:

{"text": "\u9C29"}  // Value: 鰩

Python:

char = '\u9C29'
print(char)  # Output: 鰩

Perl:

my $char = "\x{9C29}";
print $char;  # Output: 鰩

PHP:

$char = "\x{9C29}";
echo $char;  // Output: 鰩

Ruby:

char = "\u{9C29}"
puts char  # Output: 鰩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39977;</p>  <!-- Display: 鰩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C29;</p>  <!-- Display: 鰩 -->

URL Encoding:

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

Encodings

MD5:

e04eeb9a36b9e05727b9f0cd9cdb3472

SHA1:

d57f9ee7d209ecb10727488140f5a2eafb8cacb5

Base64:

6bCp