Unicode Finder

"鱩" U+9C69(CJK UNIFIED IDEOGRAPH-9C69)

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

Programming

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

Web

CSS
\009C69
HtmlDecimal
鱩
HtmlHexadecimal
鱩
Url
%E9%B1%A9

Code

MD5
4f6afa8888818cfca4dbc8ac641b2227
Sha1
027a65a3f7ebf8b6a0a5b5285fb85d99cd6818d9
Base64
6bGp

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C69';
console.log(char);  // Output: 鱩

Java:

char c = '\u9C69';
System.out.println(c);  // Output: 鱩

JSON:

{"text": "\u9C69"}  // Value: 鱩

Python:

char = '\u9C69'
print(char)  # Output: 鱩

Perl:

my $char = "\x{9C69}";
print $char;  # Output: 鱩

PHP:

$char = "\x{9C69}";
echo $char;  // Output: 鱩

Ruby:

char = "\u{9C69}"
puts char  # Output: 鱩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40041;</p>  <!-- Display: 鱩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C69;</p>  <!-- Display: 鱩 -->

URL Encoding:

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

Encodings

MD5:

4f6afa8888818cfca4dbc8ac641b2227

SHA1:

027a65a3f7ebf8b6a0a5b5285fb85d99cd6818d9

Base64:

6bGp