Unicode Finder

"鰳" U+9C33(CJK UNIFIED IDEOGRAPH-9C33)

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

Programming

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

Web

CSS
\009C33
HtmlDecimal
鰳
HtmlHexadecimal
鰳
Url
%E9%B0%B3

Code

MD5
e57c487029410890e951f07d99b28035
Sha1
32fd4a5cae73b8dd6e24646d724759dc68bb9f84
Base64
6bCz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C33';
console.log(char);  // Output: 鰳

Java:

char c = '\u9C33';
System.out.println(c);  // Output: 鰳

JSON:

{"text": "\u9C33"}  // Value: 鰳

Python:

char = '\u9C33'
print(char)  # Output: 鰳

Perl:

my $char = "\x{9C33}";
print $char;  # Output: 鰳

PHP:

$char = "\x{9C33}";
echo $char;  // Output: 鰳

Ruby:

char = "\u{9C33}"
puts char  # Output: 鰳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39987;</p>  <!-- Display: 鰳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C33;</p>  <!-- Display: 鰳 -->

URL Encoding:

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

Encodings

MD5:

e57c487029410890e951f07d99b28035

SHA1:

32fd4a5cae73b8dd6e24646d724759dc68bb9f84

Base64:

6bCz