Unicode Finder

"魿" U+9B7F(CJK UNIFIED IDEOGRAPH-9B7F)

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

Programming

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

Web

CSS
\009B7F
HtmlDecimal
魿
HtmlHexadecimal
魿
Url
%E9%AD%BF

Code

MD5
89d051367c60661a5c10327ba2284dc6
Sha1
f13e86d0a20882569e844dc9d25bde1ea8e3c1fb
Base64
6a2/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9B7F';
console.log(char);  // Output: 魿

Java:

char c = '\u9B7F';
System.out.println(c);  // Output: 魿

JSON:

{"text": "\u9B7F"}  // Value: 魿

Python:

char = '\u9B7F'
print(char)  # Output: 魿

Perl:

my $char = "\x{9B7F}";
print $char;  # Output: 魿

PHP:

$char = "\x{9B7F}";
echo $char;  // Output: 魿

Ruby:

char = "\u{9B7F}"
puts char  # Output: 魿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39807;</p>  <!-- Display: 魿 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B7F;</p>  <!-- Display: 魿 -->

URL Encoding:

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

Encodings

MD5:

89d051367c60661a5c10327ba2284dc6

SHA1:

f13e86d0a20882569e844dc9d25bde1ea8e3c1fb

Base64:

6a2/