Unicode Finder

"鰓" U+9C13(CJK UNIFIED IDEOGRAPH-9C13)

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

Programming

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

Web

CSS
\009C13
HtmlDecimal
鰓
HtmlHexadecimal
鰓
Url
%E9%B0%93

Code

MD5
8a5617d794f92666f6f6b263b03e17f4
Sha1
1e311765d0285408b532489bb46064af8bc4a4e6
Base64
6bCT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C13';
console.log(char);  // Output: 鰓

Java:

char c = '\u9C13';
System.out.println(c);  // Output: 鰓

JSON:

{"text": "\u9C13"}  // Value: 鰓

Python:

char = '\u9C13'
print(char)  # Output: 鰓

Perl:

my $char = "\x{9C13}";
print $char;  # Output: 鰓

PHP:

$char = "\x{9C13}";
echo $char;  // Output: 鰓

Ruby:

char = "\u{9C13}"
puts char  # Output: 鰓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39955;</p>  <!-- Display: 鰓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C13;</p>  <!-- Display: 鰓 -->

URL Encoding:

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

Encodings

MD5:

8a5617d794f92666f6f6b263b03e17f4

SHA1:

1e311765d0285408b532489bb46064af8bc4a4e6

Base64:

6bCT