Unicode Finder

"鮨" U+9BA8(CJK UNIFIED IDEOGRAPH-9BA8)

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

Programming

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

Web

CSS
\009BA8
HtmlDecimal
鮨
HtmlHexadecimal
鮨
Url
%E9%AE%A8

Code

MD5
0de60bdbd3a9f1d29ee6425316a8e4ee
Sha1
6453e0d817cb3ab06821f29561fc3eb951571f5d
Base64
6a6o

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9BA8';
console.log(char);  // Output: 鮨

Java:

char c = '\u9BA8';
System.out.println(c);  // Output: 鮨

JSON:

{"text": "\u9BA8"}  // Value: 鮨

Python:

char = '\u9BA8'
print(char)  # Output: 鮨

Perl:

my $char = "\x{9BA8}";
print $char;  # Output: 鮨

PHP:

$char = "\x{9BA8}";
echo $char;  // Output: 鮨

Ruby:

char = "\u{9BA8}"
puts char  # Output: 鮨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39848;</p>  <!-- Display: 鮨 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BA8;</p>  <!-- Display: 鮨 -->

URL Encoding:

// 鮨 URL encoding
https://unicodefinder.com/search.php?query=%E9%AE%A8

Encodings

MD5:

0de60bdbd3a9f1d29ee6425316a8e4ee

SHA1:

6453e0d817cb3ab06821f29561fc3eb951571f5d

Base64:

6a6o