Unicode Finder

"鰱" U+9C31(CJK UNIFIED IDEOGRAPH-9C31)

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

Programming

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

Web

CSS
\009C31
HtmlDecimal
鰱
HtmlHexadecimal
鰱
Url
%E9%B0%B1

Code

MD5
2bd06119865617c4010f12c2b00fbc32
Sha1
887e7b30d8e55a210fbdb85e65e8a2d30ecef53a
Base64
6bCx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C31';
console.log(char);  // Output: 鰱

Java:

char c = '\u9C31';
System.out.println(c);  // Output: 鰱

JSON:

{"text": "\u9C31"}  // Value: 鰱

Python:

char = '\u9C31'
print(char)  # Output: 鰱

Perl:

my $char = "\x{9C31}";
print $char;  # Output: 鰱

PHP:

$char = "\x{9C31}";
echo $char;  // Output: 鰱

Ruby:

char = "\u{9C31}"
puts char  # Output: 鰱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39985;</p>  <!-- Display: 鰱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C31;</p>  <!-- Display: 鰱 -->

URL Encoding:

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

Encodings

MD5:

2bd06119865617c4010f12c2b00fbc32

SHA1:

887e7b30d8e55a210fbdb85e65e8a2d30ecef53a

Base64:

6bCx