Unicode Finder

"龭" U+9FAD(CJK UNIFIED IDEOGRAPH-9FAD)

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

Programming

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

Web

CSS
\009FAD
HtmlDecimal
龭
HtmlHexadecimal
龭
Url
%E9%BE%AD

Code

MD5
3fc464a110010849e52cec0b3591b9c1
Sha1
4db9e996aa09811ea8aa2c7d2f3dd11b39b94e50
Base64
6b6t

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9FAD';
console.log(char);  // Output: 龭

Java:

char c = '\u9FAD';
System.out.println(c);  // Output: 龭

JSON:

{"text": "\u9FAD"}  // Value: 龭

Python:

char = '\u9FAD'
print(char)  # Output: 龭

Perl:

my $char = "\x{9FAD}";
print $char;  # Output: 龭

PHP:

$char = "\x{9FAD}";
echo $char;  // Output: 龭

Ruby:

char = "\u{9FAD}"
puts char  # Output: 龭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40877;</p>  <!-- Display: 龭 -->

HTML Hexadecimal:

<p>HTML hex: &#x9FAD;</p>  <!-- Display: 龭 -->

URL Encoding:

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

Encodings

MD5:

3fc464a110010849e52cec0b3591b9c1

SHA1:

4db9e996aa09811ea8aa2c7d2f3dd11b39b94e50

Base64:

6b6t