Unicode Finder

"羻" U+7FBB(CJK UNIFIED IDEOGRAPH-7FBB)

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

Programming

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

Web

CSS
\007FBB
HtmlDecimal
羻
HtmlHexadecimal
羻
Url
%E7%BE%BB

Code

MD5
dc2ceeac6ee8a23d586a81416ba892d0
Sha1
bb484a1e41e4accad89597a7b1a245502932d4f2
Base64
5767

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FBB';
console.log(char);  // Output: 羻

Java:

char c = '\u7FBB';
System.out.println(c);  // Output: 羻

JSON:

{"text": "\u7FBB"}  // Value: 羻

Python:

char = '\u7FBB'
print(char)  # Output: 羻

Perl:

my $char = "\x{7FBB}";
print $char;  # Output: 羻

PHP:

$char = "\x{7FBB}";
echo $char;  // Output: 羻

Ruby:

char = "\u{7FBB}"
puts char  # Output: 羻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32699;</p>  <!-- Display: 羻 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FBB;</p>  <!-- Display: 羻 -->

URL Encoding:

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

Encodings

MD5:

dc2ceeac6ee8a23d586a81416ba892d0

SHA1:

bb484a1e41e4accad89597a7b1a245502932d4f2

Base64:

5767