Unicode Finder

"鰔" U+9C14(CJK UNIFIED IDEOGRAPH-9C14)

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

Programming

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

Web

CSS
\009C14
HtmlDecimal
鰔
HtmlHexadecimal
鰔
Url
%E9%B0%94

Code

MD5
e60c4e6d818fe9e0ae4537b44b311ca1
Sha1
36ccd0daea7dfdbe6c01a64b9bc4f7f1b2d35703
Base64
6bCU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C14';
console.log(char);  // Output: 鰔

Java:

char c = '\u9C14';
System.out.println(c);  // Output: 鰔

JSON:

{"text": "\u9C14"}  // Value: 鰔

Python:

char = '\u9C14'
print(char)  # Output: 鰔

Perl:

my $char = "\x{9C14}";
print $char;  # Output: 鰔

PHP:

$char = "\x{9C14}";
echo $char;  // Output: 鰔

Ruby:

char = "\u{9C14}"
puts char  # Output: 鰔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39956;</p>  <!-- Display: 鰔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C14;</p>  <!-- Display: 鰔 -->

URL Encoding:

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

Encodings

MD5:

e60c4e6d818fe9e0ae4537b44b311ca1

SHA1:

36ccd0daea7dfdbe6c01a64b9bc4f7f1b2d35703

Base64:

6bCU