Unicode Finder

"羖" U+7F96(CJK UNIFIED IDEOGRAPH-7F96)

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

Programming

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

Web

CSS
\007F96
HtmlDecimal
羖
HtmlHexadecimal
羖
Url
%E7%BE%96

Code

MD5
20dc777fcca32f3c16df0664f9e79261
Sha1
decd5e5c7a2cbd528431be122006f83400d02103
Base64
576W

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7F96';
console.log(char);  // Output: 羖

Java:

char c = '\u7F96';
System.out.println(c);  // Output: 羖

JSON:

{"text": "\u7F96"}  // Value: 羖

Python:

char = '\u7F96'
print(char)  # Output: 羖

Perl:

my $char = "\x{7F96}";
print $char;  # Output: 羖

PHP:

$char = "\x{7F96}";
echo $char;  // Output: 羖

Ruby:

char = "\u{7F96}"
puts char  # Output: 羖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32662;</p>  <!-- Display: 羖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F96;</p>  <!-- Display: 羖 -->

URL Encoding:

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

Encodings

MD5:

20dc777fcca32f3c16df0664f9e79261

SHA1:

decd5e5c7a2cbd528431be122006f83400d02103

Base64:

576W