Unicode Finder

"鮟" U+9B9F(CJK UNIFIED IDEOGRAPH-9B9F)

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

Programming

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

Web

CSS
\009B9F
HtmlDecimal
鮟
HtmlHexadecimal
鮟
Url
%E9%AE%9F

Code

MD5
725446450420bedc5668f209f721affc
Sha1
4d11153e66a6339b85630fc15a56d3bb9717614e
Base64
6a6f

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9B9F';
console.log(char);  // Output: 鮟

Java:

char c = '\u9B9F';
System.out.println(c);  // Output: 鮟

JSON:

{"text": "\u9B9F"}  // Value: 鮟

Python:

char = '\u9B9F'
print(char)  # Output: 鮟

Perl:

my $char = "\x{9B9F}";
print $char;  # Output: 鮟

PHP:

$char = "\x{9B9F}";
echo $char;  // Output: 鮟

Ruby:

char = "\u{9B9F}"
puts char  # Output: 鮟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39839;</p>  <!-- Display: 鮟 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B9F;</p>  <!-- Display: 鮟 -->

URL Encoding:

// 鮟 URL encoding
https://unicodefinder.com/search.php?query=%E9%AE%9F

Encodings

MD5:

725446450420bedc5668f209f721affc

SHA1:

4d11153e66a6339b85630fc15a56d3bb9717614e

Base64:

6a6f