Unicode Finder

"鯦" U+9BE6(CJK UNIFIED IDEOGRAPH-9BE6)

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

Programming

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

Web

CSS
\009BE6
HtmlDecimal
鯦
HtmlHexadecimal
鯦
Url
%E9%AF%A6

Code

MD5
f4262b641afe8f72e59f7bfa56420613
Sha1
0521f2b51d2f8e8988bb094500818fe889d4c13d
Base64
6a+m

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9BE6';
console.log(char);  // Output: 鯦

Java:

char c = '\u9BE6';
System.out.println(c);  // Output: 鯦

JSON:

{"text": "\u9BE6"}  // Value: 鯦

Python:

char = '\u9BE6'
print(char)  # Output: 鯦

Perl:

my $char = "\x{9BE6}";
print $char;  # Output: 鯦

PHP:

$char = "\x{9BE6}";
echo $char;  // Output: 鯦

Ruby:

char = "\u{9BE6}"
puts char  # Output: 鯦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39910;</p>  <!-- Display: 鯦 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BE6;</p>  <!-- Display: 鯦 -->

URL Encoding:

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

Encodings

MD5:

f4262b641afe8f72e59f7bfa56420613

SHA1:

0521f2b51d2f8e8988bb094500818fe889d4c13d

Base64:

6a+m