Unicode Finder

"鰕" U+9C15(CJK UNIFIED IDEOGRAPH-9C15)

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

Programming

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

Web

CSS
\009C15
HtmlDecimal
鰕
HtmlHexadecimal
鰕
Url
%E9%B0%95

Code

MD5
3fbf7d3d3e18b6b17d640c4ce1c38a47
Sha1
8143d2ed03b03c6a49da11375abcb5a01c3f3d0e
Base64
6bCV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C15';
console.log(char);  // Output: 鰕

Java:

char c = '\u9C15';
System.out.println(c);  // Output: 鰕

JSON:

{"text": "\u9C15"}  // Value: 鰕

Python:

char = '\u9C15'
print(char)  # Output: 鰕

Perl:

my $char = "\x{9C15}";
print $char;  # Output: 鰕

PHP:

$char = "\x{9C15}";
echo $char;  // Output: 鰕

Ruby:

char = "\u{9C15}"
puts char  # Output: 鰕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39957;</p>  <!-- Display: 鰕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C15;</p>  <!-- Display: 鰕 -->

URL Encoding:

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

Encodings

MD5:

3fbf7d3d3e18b6b17d640c4ce1c38a47

SHA1:

8143d2ed03b03c6a49da11375abcb5a01c3f3d0e

Base64:

6bCV