Unicode Finder

"魼" U+9B7C(CJK UNIFIED IDEOGRAPH-9B7C)

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

Programming

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

Web

CSS
\009B7C
HtmlDecimal
魼
HtmlHexadecimal
魼
Url
%E9%AD%BC

Code

MD5
98165ee695d74847967118f8547ca732
Sha1
c89b706dee479d3ef4f7ffc10a0dda56bb991c91
Base64
6a28

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9B7C';
console.log(char);  // Output: 魼

Java:

char c = '\u9B7C';
System.out.println(c);  // Output: 魼

JSON:

{"text": "\u9B7C"}  // Value: 魼

Python:

char = '\u9B7C'
print(char)  # Output: 魼

Perl:

my $char = "\x{9B7C}";
print $char;  # Output: 魼

PHP:

$char = "\x{9B7C}";
echo $char;  // Output: 魼

Ruby:

char = "\u{9B7C}"
puts char  # Output: 魼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39804;</p>  <!-- Display: 魼 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B7C;</p>  <!-- Display: 魼 -->

URL Encoding:

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

Encodings

MD5:

98165ee695d74847967118f8547ca732

SHA1:

c89b706dee479d3ef4f7ffc10a0dda56bb991c91

Base64:

6a28