Unicode Finder

"鰰" U+9C30(CJK UNIFIED IDEOGRAPH-9C30)

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

Programming

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

Web

CSS
\009C30
HtmlDecimal
鰰
HtmlHexadecimal
鰰
Url
%E9%B0%B0

Code

MD5
e5676e2e457deded87aa7876ee24c24f
Sha1
6f9a667cdb8e413642464b0b455a1f46f0f77bb5
Base64
6bCw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C30';
console.log(char);  // Output: 鰰

Java:

char c = '\u9C30';
System.out.println(c);  // Output: 鰰

JSON:

{"text": "\u9C30"}  // Value: 鰰

Python:

char = '\u9C30'
print(char)  # Output: 鰰

Perl:

my $char = "\x{9C30}";
print $char;  # Output: 鰰

PHP:

$char = "\x{9C30}";
echo $char;  // Output: 鰰

Ruby:

char = "\u{9C30}"
puts char  # Output: 鰰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39984;</p>  <!-- Display: 鰰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C30;</p>  <!-- Display: 鰰 -->

URL Encoding:

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

Encodings

MD5:

e5676e2e457deded87aa7876ee24c24f

SHA1:

6f9a667cdb8e413642464b0b455a1f46f0f77bb5

Base64:

6bCw