Unicode Finder

"鯢" U+9BE2(CJK UNIFIED IDEOGRAPH-9BE2)

U+9BE2
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9BE2

Programming

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

Web

CSS
\009BE2
HtmlDecimal
鯢
HtmlHexadecimal
鯢
Url
%E9%AF%A2

Code

MD5
c1482c1a5799be62b627ca182aeafc74
Sha1
81067c656558cc372b2bb87f771236f1b2b12e9a
Base64
6a+i

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9BE2';
console.log(char);  // Output: 鯢

Java:

char c = '\u9BE2';
System.out.println(c);  // Output: 鯢

JSON:

{"text": "\u9BE2"}  // Value: 鯢

Python:

char = '\u9BE2'
print(char)  # Output: 鯢

Perl:

my $char = "\x{9BE2}";
print $char;  # Output: 鯢

PHP:

$char = "\x{9BE2}";
echo $char;  // Output: 鯢

Ruby:

char = "\u{9BE2}"
puts char  # Output: 鯢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39906;</p>  <!-- Display: 鯢 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BE2;</p>  <!-- Display: 鯢 -->

URL Encoding:

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

Encodings

MD5:

c1482c1a5799be62b627ca182aeafc74

SHA1:

81067c656558cc372b2bb87f771236f1b2b12e9a

Base64:

6a+i