Unicode Finder

"鱇" U+9C47(CJK UNIFIED IDEOGRAPH-9C47)

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

Programming

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

Web

CSS
\009C47
HtmlDecimal
鱇
HtmlHexadecimal
鱇
Url
%E9%B1%87

Code

MD5
5f9f0d6976138802aed73d29b01c1dab
Sha1
30bf845665d85da73bd38f2c385140781ea487ee
Base64
6bGH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C47';
console.log(char);  // Output: 鱇

Java:

char c = '\u9C47';
System.out.println(c);  // Output: 鱇

JSON:

{"text": "\u9C47"}  // Value: 鱇

Python:

char = '\u9C47'
print(char)  # Output: 鱇

Perl:

my $char = "\x{9C47}";
print $char;  # Output: 鱇

PHP:

$char = "\x{9C47}";
echo $char;  // Output: 鱇

Ruby:

char = "\u{9C47}"
puts char  # Output: 鱇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40007;</p>  <!-- Display: 鱇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C47;</p>  <!-- Display: 鱇 -->

URL Encoding:

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

Encodings

MD5:

5f9f0d6976138802aed73d29b01c1dab

SHA1:

30bf845665d85da73bd38f2c385140781ea487ee

Base64:

6bGH