Unicode Finder

"鯤" U+9BE4(CJK UNIFIED IDEOGRAPH-9BE4)

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

Programming

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

Web

CSS
\009BE4
HtmlDecimal
鯤
HtmlHexadecimal
鯤
Url
%E9%AF%A4

Code

MD5
8a0f2355c10646d23c58bce1d1f88b2b
Sha1
19b5c2fa3d4cb1109266e3aab742dbc755e42b13
Base64
6a+k

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9BE4';
console.log(char);  // Output: 鯤

Java:

char c = '\u9BE4';
System.out.println(c);  // Output: 鯤

JSON:

{"text": "\u9BE4"}  // Value: 鯤

Python:

char = '\u9BE4'
print(char)  # Output: 鯤

Perl:

my $char = "\x{9BE4}";
print $char;  # Output: 鯤

PHP:

$char = "\x{9BE4}";
echo $char;  // Output: 鯤

Ruby:

char = "\u{9BE4}"
puts char  # Output: 鯤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39908;</p>  <!-- Display: 鯤 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BE4;</p>  <!-- Display: 鯤 -->

URL Encoding:

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

Encodings

MD5:

8a0f2355c10646d23c58bce1d1f88b2b

SHA1:

19b5c2fa3d4cb1109266e3aab742dbc755e42b13

Base64:

6a+k