Unicode Finder

"龯" U+9FAF(CJK UNIFIED IDEOGRAPH-9FAF)

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

Programming

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

Web

CSS
\009FAF
HtmlDecimal
龯
HtmlHexadecimal
龯
Url
%E9%BE%AF

Code

MD5
ec9646d64eba1be3ace7c30886a3e2c2
Sha1
27ef7f0430b54be9ebb1d21bd67bc161b7d23e50
Base64
6b6v

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9FAF';
console.log(char);  // Output: 龯

Java:

char c = '\u9FAF';
System.out.println(c);  // Output: 龯

JSON:

{"text": "\u9FAF"}  // Value: 龯

Python:

char = '\u9FAF'
print(char)  # Output: 龯

Perl:

my $char = "\x{9FAF}";
print $char;  # Output: 龯

PHP:

$char = "\x{9FAF}";
echo $char;  // Output: 龯

Ruby:

char = "\u{9FAF}"
puts char  # Output: 龯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40879;</p>  <!-- Display: 龯 -->

HTML Hexadecimal:

<p>HTML hex: &#x9FAF;</p>  <!-- Display: 龯 -->

URL Encoding:

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

Encodings

MD5:

ec9646d64eba1be3ace7c30886a3e2c2

SHA1:

27ef7f0430b54be9ebb1d21bd67bc161b7d23e50

Base64:

6b6v