Unicode Finder

"龻" U+9FBB(CJK UNIFIED IDEOGRAPH-9FBB)

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

Programming

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

Web

CSS
\009FBB
HtmlDecimal
龻
HtmlHexadecimal
龻
Url
%E9%BE%BB

Code

MD5
b4f13398e07cf8beba55ecb98ea82e5e
Sha1
1f29b9250a00480dcc7baefdf3b1c86511695d7c
Base64
6b67

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9FBB';
console.log(char);  // Output: 龻

Java:

char c = '\u9FBB';
System.out.println(c);  // Output: 龻

JSON:

{"text": "\u9FBB"}  // Value: 龻

Python:

char = '\u9FBB'
print(char)  # Output: 龻

Perl:

my $char = "\x{9FBB}";
print $char;  # Output: 龻

PHP:

$char = "\x{9FBB}";
echo $char;  // Output: 龻

Ruby:

char = "\u{9FBB}"
puts char  # Output: 龻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40891;</p>  <!-- Display: 龻 -->

HTML Hexadecimal:

<p>HTML hex: &#x9FBB;</p>  <!-- Display: 龻 -->

URL Encoding:

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

Encodings

MD5:

b4f13398e07cf8beba55ecb98ea82e5e

SHA1:

1f29b9250a00480dcc7baefdf3b1c86511695d7c

Base64:

6b67