Unicode Finder

"鰌" U+9C0C(CJK UNIFIED IDEOGRAPH-9C0C)

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

Programming

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

Web

CSS
\009C0C
HtmlDecimal
鰌
HtmlHexadecimal
鰌
Url
%E9%B0%8C

Code

MD5
ebb83ac326160266478ffa31a948a8a7
Sha1
bda456898ff60198e92f159497ed6d21f9f028f6
Base64
6bCM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9C0C';
console.log(char);  // Output: 鰌

Java:

char c = '\u9C0C';
System.out.println(c);  // Output: 鰌

JSON:

{"text": "\u9C0C"}  // Value: 鰌

Python:

char = '\u9C0C'
print(char)  # Output: 鰌

Perl:

my $char = "\x{9C0C}";
print $char;  # Output: 鰌

PHP:

$char = "\x{9C0C}";
echo $char;  // Output: 鰌

Ruby:

char = "\u{9C0C}"
puts char  # Output: 鰌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39948;</p>  <!-- Display: 鰌 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C0C;</p>  <!-- Display: 鰌 -->

URL Encoding:

// 鰌 URL encoding
https://unicodefinder.com/search.php?query=%E9%B0%8C

Encodings

MD5:

ebb83ac326160266478ffa31a948a8a7

SHA1:

bda456898ff60198e92f159497ed6d21f9f028f6

Base64:

6bCM