Unicode Finder

"龂" U+9F82(CJK UNIFIED IDEOGRAPH-9F82)

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

Programming

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

Web

CSS
\009F82
HtmlDecimal
龂
HtmlHexadecimal
龂
Url
%E9%BE%82

Code

MD5
ef06c9a456d40163afa76ad0bc059cc4
Sha1
7ab0bb9da5af2e45a58fd45278e19fe0ade068fc
Base64
6b6C

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9F82';
console.log(char);  // Output: 龂

Java:

char c = '\u9F82';
System.out.println(c);  // Output: 龂

JSON:

{"text": "\u9F82"}  // Value: 龂

Python:

char = '\u9F82'
print(char)  # Output: 龂

Perl:

my $char = "\x{9F82}";
print $char;  # Output: 龂

PHP:

$char = "\x{9F82}";
echo $char;  // Output: 龂

Ruby:

char = "\u{9F82}"
puts char  # Output: 龂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40834;</p>  <!-- Display: 龂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F82;</p>  <!-- Display: 龂 -->

URL Encoding:

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

Encodings

MD5:

ef06c9a456d40163afa76ad0bc059cc4

SHA1:

7ab0bb9da5af2e45a58fd45278e19fe0ade068fc

Base64:

6b6C