Unicode Finder

"龝" U+9F9D(CJK UNIFIED IDEOGRAPH-9F9D)

U+9F9D
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9F9D

Programming

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

Web

CSS
\009F9D
HtmlDecimal
龝
HtmlHexadecimal
龝
Url
%E9%BE%9D

Code

MD5
4f1bcf70b1a3a4122f507c0178f68ee8
Sha1
0be995f75f1f78675745e76f8072286f81f05950
Base64
6b6d

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9F9D';
console.log(char);  // Output: 龝

Java:

char c = '\u9F9D';
System.out.println(c);  // Output: 龝

JSON:

{"text": "\u9F9D"}  // Value: 龝

Python:

char = '\u9F9D'
print(char)  # Output: 龝

Perl:

my $char = "\x{9F9D}";
print $char;  # Output: 龝

PHP:

$char = "\x{9F9D}";
echo $char;  // Output: 龝

Ruby:

char = "\u{9F9D}"
puts char  # Output: 龝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40861;</p>  <!-- Display: 龝 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F9D;</p>  <!-- Display: 龝 -->

URL Encoding:

// 龝 URL encoding
https://unicodefinder.com/search.php?query=%E9%BE%9D

Encodings

MD5:

4f1bcf70b1a3a4122f507c0178f68ee8

SHA1:

0be995f75f1f78675745e76f8072286f81f05950

Base64:

6b6d