Unicode Finder

"鯻" U+9BFB(CJK UNIFIED IDEOGRAPH-9BFB)

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

Programming

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

Web

CSS
\009BFB
HtmlDecimal
鯻
HtmlHexadecimal
鯻
Url
%E9%AF%BB

Code

MD5
3daaa1ea9cf5fa5b5eceb8aa351a5bfa
Sha1
7102c5bf61c130611b5fc01a44d63a007be23152
Base64
6a+7

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9BFB';
console.log(char);  // Output: 鯻

Java:

char c = '\u9BFB';
System.out.println(c);  // Output: 鯻

JSON:

{"text": "\u9BFB"}  // Value: 鯻

Python:

char = '\u9BFB'
print(char)  # Output: 鯻

Perl:

my $char = "\x{9BFB}";
print $char;  # Output: 鯻

PHP:

$char = "\x{9BFB}";
echo $char;  // Output: 鯻

Ruby:

char = "\u{9BFB}"
puts char  # Output: 鯻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39931;</p>  <!-- Display: 鯻 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BFB;</p>  <!-- Display: 鯻 -->

URL Encoding:

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

Encodings

MD5:

3daaa1ea9cf5fa5b5eceb8aa351a5bfa

SHA1:

7102c5bf61c130611b5fc01a44d63a007be23152

Base64:

6a+7