Unicode Finder

"鱳" U+9C73(CJK UNIFIED IDEOGRAPH-9C73)

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

Programming

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

Web

CSS
\009C73
HtmlDecimal
鱳
HtmlHexadecimal
鱳
Url
%E9%B1%B3

Code

MD5
6d175cf49fdd48d074dbd698efed9002
Sha1
4d663344b2d74c296bb3121c8ea5ea1f7902f63e
Base64
6bGz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C73';
console.log(char);  // Output: 鱳

Java:

char c = '\u9C73';
System.out.println(c);  // Output: 鱳

JSON:

{"text": "\u9C73"}  // Value: 鱳

Python:

char = '\u9C73'
print(char)  # Output: 鱳

Perl:

my $char = "\x{9C73}";
print $char;  # Output: 鱳

PHP:

$char = "\x{9C73}";
echo $char;  // Output: 鱳

Ruby:

char = "\u{9C73}"
puts char  # Output: 鱳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40051;</p>  <!-- Display: 鱳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C73;</p>  <!-- Display: 鱳 -->

URL Encoding:

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

Encodings

MD5:

6d175cf49fdd48d074dbd698efed9002

SHA1:

4d663344b2d74c296bb3121c8ea5ea1f7902f63e

Base64:

6bGz