Unicode Finder

"龫" U+9FAB(CJK UNIFIED IDEOGRAPH-9FAB)

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

Programming

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

Web

CSS
\009FAB
HtmlDecimal
龫
HtmlHexadecimal
龫
Url
%E9%BE%AB

Code

MD5
58adb27badafa91a10d378877fa8fdb9
Sha1
d9264139994f06bb0c8c8a2f01375a93a98122f4
Base64
6b6r

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9FAB';
console.log(char);  // Output: 龫

Java:

char c = '\u9FAB';
System.out.println(c);  // Output: 龫

JSON:

{"text": "\u9FAB"}  // Value: 龫

Python:

char = '\u9FAB'
print(char)  # Output: 龫

Perl:

my $char = "\x{9FAB}";
print $char;  # Output: 龫

PHP:

$char = "\x{9FAB}";
echo $char;  // Output: 龫

Ruby:

char = "\u{9FAB}"
puts char  # Output: 龫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40875;</p>  <!-- Display: 龫 -->

HTML Hexadecimal:

<p>HTML hex: &#x9FAB;</p>  <!-- Display: 龫 -->

URL Encoding:

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

Encodings

MD5:

58adb27badafa91a10d378877fa8fdb9

SHA1:

d9264139994f06bb0c8c8a2f01375a93a98122f4

Base64:

6b6r