Unicode Finder

"鰒" U+9C12(CJK UNIFIED IDEOGRAPH-9C12)

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

Programming

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

Web

CSS
\009C12
HtmlDecimal
鰒
HtmlHexadecimal
鰒
Url
%E9%B0%92

Code

MD5
389e26d25b620e5b5bfc7657adb73a14
Sha1
119ecf05da99579e3db9ba28ceb888b08cf7ddfb
Base64
6bCS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C12';
console.log(char);  // Output: 鰒

Java:

char c = '\u9C12';
System.out.println(c);  // Output: 鰒

JSON:

{"text": "\u9C12"}  // Value: 鰒

Python:

char = '\u9C12'
print(char)  # Output: 鰒

Perl:

my $char = "\x{9C12}";
print $char;  # Output: 鰒

PHP:

$char = "\x{9C12}";
echo $char;  // Output: 鰒

Ruby:

char = "\u{9C12}"
puts char  # Output: 鰒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39954;</p>  <!-- Display: 鰒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C12;</p>  <!-- Display: 鰒 -->

URL Encoding:

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

Encodings

MD5:

389e26d25b620e5b5bfc7657adb73a14

SHA1:

119ecf05da99579e3db9ba28ceb888b08cf7ddfb

Base64:

6bCS