Unicode Finder

"鰹" U+9C39(CJK UNIFIED IDEOGRAPH-9C39)

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

Programming

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

Web

CSS
\009C39
HtmlDecimal
鰹
HtmlHexadecimal
鰹
Url
%E9%B0%B9

Code

MD5
c1f871182502b2fb9677e1abb76232ba
Sha1
ac5f63f620bcd71ba2eb69a7d4ce58754f559178
Base64
6bC5

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C39';
console.log(char);  // Output: 鰹

Java:

char c = '\u9C39';
System.out.println(c);  // Output: 鰹

JSON:

{"text": "\u9C39"}  // Value: 鰹

Python:

char = '\u9C39'
print(char)  # Output: 鰹

Perl:

my $char = "\x{9C39}";
print $char;  # Output: 鰹

PHP:

$char = "\x{9C39}";
echo $char;  // Output: 鰹

Ruby:

char = "\u{9C39}"
puts char  # Output: 鰹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39993;</p>  <!-- Display: 鰹 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C39;</p>  <!-- Display: 鰹 -->

URL Encoding:

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

Encodings

MD5:

c1f871182502b2fb9677e1abb76232ba

SHA1:

ac5f63f620bcd71ba2eb69a7d4ce58754f559178

Base64:

6bC5