Unicode Finder

"鲙" U+9C99(CJK UNIFIED IDEOGRAPH-9C99)

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

Programming

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

Web

CSS
\009C99
HtmlDecimal
鲙
HtmlHexadecimal
鲙
Url
%E9%B2%99

Code

MD5
af499f149ca3bb718aa8c556ff90b2aa
Sha1
b66950eead20c7ee1acb6d7d6e60862d9e3adf2f
Base64
6bKZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C99';
console.log(char);  // Output: 鲙

Java:

char c = '\u9C99';
System.out.println(c);  // Output: 鲙

JSON:

{"text": "\u9C99"}  // Value: 鲙

Python:

char = '\u9C99'
print(char)  # Output: 鲙

Perl:

my $char = "\x{9C99}";
print $char;  # Output: 鲙

PHP:

$char = "\x{9C99}";
echo $char;  // Output: 鲙

Ruby:

char = "\u{9C99}"
puts char  # Output: 鲙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40089;</p>  <!-- Display: 鲙 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C99;</p>  <!-- Display: 鲙 -->

URL Encoding:

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

Encodings

MD5:

af499f149ca3bb718aa8c556ff90b2aa

SHA1:

b66950eead20c7ee1acb6d7d6e60862d9e3adf2f

Base64:

6bKZ