Unicode Finder

"鮯" U+9BAF(CJK UNIFIED IDEOGRAPH-9BAF)

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

Programming

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

Web

CSS
\009BAF
HtmlDecimal
鮯
HtmlHexadecimal
鮯
Url
%E9%AE%AF

Code

MD5
c18c797cefda8ce7540afa55cfe05a00
Sha1
c2f072e4de3291a98a76608d46233403f4ed6c54
Base64
6a6v

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9BAF';
console.log(char);  // Output: 鮯

Java:

char c = '\u9BAF';
System.out.println(c);  // Output: 鮯

JSON:

{"text": "\u9BAF"}  // Value: 鮯

Python:

char = '\u9BAF'
print(char)  # Output: 鮯

Perl:

my $char = "\x{9BAF}";
print $char;  # Output: 鮯

PHP:

$char = "\x{9BAF}";
echo $char;  // Output: 鮯

Ruby:

char = "\u{9BAF}"
puts char  # Output: 鮯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39855;</p>  <!-- Display: 鮯 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BAF;</p>  <!-- Display: 鮯 -->

URL Encoding:

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

Encodings

MD5:

c18c797cefda8ce7540afa55cfe05a00

SHA1:

c2f072e4de3291a98a76608d46233403f4ed6c54

Base64:

6a6v