Unicode Finder

"鯰" U+9BF0(CJK UNIFIED IDEOGRAPH-9BF0)

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

Programming

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

Web

CSS
\009BF0
HtmlDecimal
鯰
HtmlHexadecimal
鯰
Url
%E9%AF%B0

Code

MD5
6e84a91187375eea3cc6a8695d5ec43a
Sha1
f49dbbbde1cf62463a1d71969a92155e96b0b608
Base64
6a+w

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9BF0';
console.log(char);  // Output: 鯰

Java:

char c = '\u9BF0';
System.out.println(c);  // Output: 鯰

JSON:

{"text": "\u9BF0"}  // Value: 鯰

Python:

char = '\u9BF0'
print(char)  # Output: 鯰

Perl:

my $char = "\x{9BF0}";
print $char;  # Output: 鯰

PHP:

$char = "\x{9BF0}";
echo $char;  // Output: 鯰

Ruby:

char = "\u{9BF0}"
puts char  # Output: 鯰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39920;</p>  <!-- Display: 鯰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BF0;</p>  <!-- Display: 鯰 -->

URL Encoding:

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

Encodings

MD5:

6e84a91187375eea3cc6a8695d5ec43a

SHA1:

f49dbbbde1cf62463a1d71969a92155e96b0b608

Base64:

6a+w