Unicode Finder

"鯬" U+9BEC(CJK UNIFIED IDEOGRAPH-9BEC)

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

Programming

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

Web

CSS
\009BEC
HtmlDecimal
鯬
HtmlHexadecimal
鯬
Url
%E9%AF%AC

Code

MD5
b08e3a48a58428b306f90dd105b1fcec
Sha1
d6761ef9031b89cf3c38063cbbb46fd05c853729
Base64
6a+s

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9BEC';
console.log(char);  // Output: 鯬

Java:

char c = '\u9BEC';
System.out.println(c);  // Output: 鯬

JSON:

{"text": "\u9BEC"}  // Value: 鯬

Python:

char = '\u9BEC'
print(char)  # Output: 鯬

Perl:

my $char = "\x{9BEC}";
print $char;  # Output: 鯬

PHP:

$char = "\x{9BEC}";
echo $char;  // Output: 鯬

Ruby:

char = "\u{9BEC}"
puts char  # Output: 鯬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39916;</p>  <!-- Display: 鯬 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BEC;</p>  <!-- Display: 鯬 -->

URL Encoding:

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

Encodings

MD5:

b08e3a48a58428b306f90dd105b1fcec

SHA1:

d6761ef9031b89cf3c38063cbbb46fd05c853729

Base64:

6a+s