Unicode Finder

"鱅" U+9C45(CJK UNIFIED IDEOGRAPH-9C45)

U+9C45
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9C45

Programming

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

Web

CSS
\009C45
HtmlDecimal
鱅
HtmlHexadecimal
鱅
Url
%E9%B1%85

Code

MD5
790652a2b3ef2b502926c501a26ba611
Sha1
dd0dad026a19411cc2ef0dc1fd0d747f6f4ae872
Base64
6bGF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9C45';
console.log(char);  // Output: 鱅

Java:

char c = '\u9C45';
System.out.println(c);  // Output: 鱅

JSON:

{"text": "\u9C45"}  // Value: 鱅

Python:

char = '\u9C45'
print(char)  # Output: 鱅

Perl:

my $char = "\x{9C45}";
print $char;  # Output: 鱅

PHP:

$char = "\x{9C45}";
echo $char;  // Output: 鱅

Ruby:

char = "\u{9C45}"
puts char  # Output: 鱅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40005;</p>  <!-- Display: 鱅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C45;</p>  <!-- Display: 鱅 -->

URL Encoding:

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

Encodings

MD5:

790652a2b3ef2b502926c501a26ba611

SHA1:

dd0dad026a19411cc2ef0dc1fd0d747f6f4ae872

Base64:

6bGF