Unicode Finder

"鲯" U+9CAF(CJK UNIFIED IDEOGRAPH-9CAF)

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

Programming

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

Web

CSS
\009CAF
HtmlDecimal
鲯
HtmlHexadecimal
鲯
Url
%E9%B2%AF

Code

MD5
079ec84fbc066c5601ab8bd156327b0d
Sha1
8edbd426c102c824fa4bad1e9296a5b5c840210f
Base64
6bKv

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9CAF';
console.log(char);  // Output: 鲯

Java:

char c = '\u9CAF';
System.out.println(c);  // Output: 鲯

JSON:

{"text": "\u9CAF"}  // Value: 鲯

Python:

char = '\u9CAF'
print(char)  # Output: 鲯

Perl:

my $char = "\x{9CAF}";
print $char;  # Output: 鲯

PHP:

$char = "\x{9CAF}";
echo $char;  // Output: 鲯

Ruby:

char = "\u{9CAF}"
puts char  # Output: 鲯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40111;</p>  <!-- Display: 鲯 -->

HTML Hexadecimal:

<p>HTML hex: &#x9CAF;</p>  <!-- Display: 鲯 -->

URL Encoding:

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

Encodings

MD5:

079ec84fbc066c5601ab8bd156327b0d

SHA1:

8edbd426c102c824fa4bad1e9296a5b5c840210f

Base64:

6bKv