Unicode Finder

"龒" U+9F92(CJK UNIFIED IDEOGRAPH-9F92)

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

Programming

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

Web

CSS
\009F92
HtmlDecimal
龒
HtmlHexadecimal
龒
Url
%E9%BE%92

Code

MD5
92aad89e2cd9c5ca197165a71ced9599
Sha1
adec404201af2667b49ac3ccdfee4fbc997a69ff
Base64
6b6S

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F92';
console.log(char);  // Output: 龒

Java:

char c = '\u9F92';
System.out.println(c);  // Output: 龒

JSON:

{"text": "\u9F92"}  // Value: 龒

Python:

char = '\u9F92'
print(char)  # Output: 龒

Perl:

my $char = "\x{9F92}";
print $char;  # Output: 龒

PHP:

$char = "\x{9F92}";
echo $char;  // Output: 龒

Ruby:

char = "\u{9F92}"
puts char  # Output: 龒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40850;</p>  <!-- Display: 龒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F92;</p>  <!-- Display: 龒 -->

URL Encoding:

// 龒 URL encoding
https://unicodefinder.com/search.php?query=%E9%BE%92

Encodings

MD5:

92aad89e2cd9c5ca197165a71ced9599

SHA1:

adec404201af2667b49ac3ccdfee4fbc997a69ff

Base64:

6b6S