Unicode Finder

"鰣" U+9C23(CJK UNIFIED IDEOGRAPH-9C23)

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

Programming

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

Web

CSS
\009C23
HtmlDecimal
鰣
HtmlHexadecimal
鰣
Url
%E9%B0%A3

Code

MD5
a3896d63af319a8f2dd7d12904e4a813
Sha1
3104d3b429cb3284f12af81ca9ddba0e67eb4a76
Base64
6bCj

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C23';
console.log(char);  // Output: 鰣

Java:

char c = '\u9C23';
System.out.println(c);  // Output: 鰣

JSON:

{"text": "\u9C23"}  // Value: 鰣

Python:

char = '\u9C23'
print(char)  # Output: 鰣

Perl:

my $char = "\x{9C23}";
print $char;  # Output: 鰣

PHP:

$char = "\x{9C23}";
echo $char;  // Output: 鰣

Ruby:

char = "\u{9C23}"
puts char  # Output: 鰣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39971;</p>  <!-- Display: 鰣 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C23;</p>  <!-- Display: 鰣 -->

URL Encoding:

// 鰣 URL encoding
https://unicodefinder.com/search.php?query=%E9%B0%A3

Encodings

MD5:

a3896d63af319a8f2dd7d12904e4a813

SHA1:

3104d3b429cb3284f12af81ca9ddba0e67eb4a76

Base64:

6bCj