Unicode Finder

"鲭" U+9CAD(CJK UNIFIED IDEOGRAPH-9CAD)

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

Programming

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

Web

CSS
\009CAD
HtmlDecimal
鲭
HtmlHexadecimal
鲭
Url
%E9%B2%AD

Code

MD5
4d710b2ed557b879f33e96bbc3715524
Sha1
70af42d8c36828e2f0674394251dec767a728943
Base64
6bKt

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9CAD';
console.log(char);  // Output: 鲭

Java:

char c = '\u9CAD';
System.out.println(c);  // Output: 鲭

JSON:

{"text": "\u9CAD"}  // Value: 鲭

Python:

char = '\u9CAD'
print(char)  # Output: 鲭

Perl:

my $char = "\x{9CAD}";
print $char;  # Output: 鲭

PHP:

$char = "\x{9CAD}";
echo $char;  // Output: 鲭

Ruby:

char = "\u{9CAD}"
puts char  # Output: 鲭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40109;</p>  <!-- Display: 鲭 -->

HTML Hexadecimal:

<p>HTML hex: &#x9CAD;</p>  <!-- Display: 鲭 -->

URL Encoding:

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

Encodings

MD5:

4d710b2ed557b879f33e96bbc3715524

SHA1:

70af42d8c36828e2f0674394251dec767a728943

Base64:

6bKt