Unicode Finder

"羼" U+7FBC(CJK UNIFIED IDEOGRAPH-7FBC)

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

Programming

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

Web

CSS
\007FBC
HtmlDecimal
羼
HtmlHexadecimal
羼
Url
%E7%BE%BC

Code

MD5
a3ba8af43abff71fbb0d41fecd08f6d3
Sha1
d448e32949288ec152e77b3f8c481a33229229c4
Base64
5768

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FBC';
console.log(char);  // Output: 羼

Java:

char c = '\u7FBC';
System.out.println(c);  // Output: 羼

JSON:

{"text": "\u7FBC"}  // Value: 羼

Python:

char = '\u7FBC'
print(char)  # Output: 羼

Perl:

my $char = "\x{7FBC}";
print $char;  # Output: 羼

PHP:

$char = "\x{7FBC}";
echo $char;  // Output: 羼

Ruby:

char = "\u{7FBC}"
puts char  # Output: 羼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32700;</p>  <!-- Display: 羼 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FBC;</p>  <!-- Display: 羼 -->

URL Encoding:

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

Encodings

MD5:

a3ba8af43abff71fbb0d41fecd08f6d3

SHA1:

d448e32949288ec152e77b3f8c481a33229229c4

Base64:

5768