Unicode Finder

"鯲" U+9BF2(CJK UNIFIED IDEOGRAPH-9BF2)

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

Programming

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

Web

CSS
\009BF2
HtmlDecimal
鯲
HtmlHexadecimal
鯲
Url
%E9%AF%B2

Code

MD5
424a478f6ef74fd5180edee11d3888a1
Sha1
8fe496386d3a48969d91cf4544007f1e1325aa8f
Base64
6a+y

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9BF2';
console.log(char);  // Output: 鯲

Java:

char c = '\u9BF2';
System.out.println(c);  // Output: 鯲

JSON:

{"text": "\u9BF2"}  // Value: 鯲

Python:

char = '\u9BF2'
print(char)  # Output: 鯲

Perl:

my $char = "\x{9BF2}";
print $char;  # Output: 鯲

PHP:

$char = "\x{9BF2}";
echo $char;  // Output: 鯲

Ruby:

char = "\u{9BF2}"
puts char  # Output: 鯲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39922;</p>  <!-- Display: 鯲 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BF2;</p>  <!-- Display: 鯲 -->

URL Encoding:

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

Encodings

MD5:

424a478f6ef74fd5180edee11d3888a1

SHA1:

8fe496386d3a48969d91cf4544007f1e1325aa8f

Base64:

6a+y