Unicode Finder

"魨" U+9B68(CJK UNIFIED IDEOGRAPH-9B68)

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

Programming

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

Web

CSS
\009B68
HtmlDecimal
魨
HtmlHexadecimal
魨
Url
%E9%AD%A8

Code

MD5
94c96fb3b965eb92e9313171940d2456
Sha1
54f62be4b9664b23352854edf133cc87f5f689e9
Base64
6a2o

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9B68';
console.log(char);  // Output: 魨

Java:

char c = '\u9B68';
System.out.println(c);  // Output: 魨

JSON:

{"text": "\u9B68"}  // Value: 魨

Python:

char = '\u9B68'
print(char)  # Output: 魨

Perl:

my $char = "\x{9B68}";
print $char;  # Output: 魨

PHP:

$char = "\x{9B68}";
echo $char;  // Output: 魨

Ruby:

char = "\u{9B68}"
puts char  # Output: 魨

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39784;</p>  <!-- Display: 魨 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B68;</p>  <!-- Display: 魨 -->

URL Encoding:

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

Encodings

MD5:

94c96fb3b965eb92e9313171940d2456

SHA1:

54f62be4b9664b23352854edf133cc87f5f689e9

Base64:

6a2o