Unicode Finder

"視" U+8996(CJK UNIFIED IDEOGRAPH-8996)

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

Programming

C
\u8996
JavaScript
\u8996
Java
\u8996
Json
\u8996
Python
\u8996
Perl
\x{8996}
PHP
\x{8996}
Ruby
\u{8996}
Rust
\u{8996}
Go
\u8996

Web

CSS
\008996
HtmlDecimal
視
HtmlHexadecimal
視
Url
%E8%A6%96

Code

MD5
a7d4339664f1e55734c176955c0d0c77
Sha1
7029dcfca23d25b61a97d8b44ac5799da8576f78
Base64
6KaW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8996';
console.log(char);  // Output: 視

Java:

char c = '\u8996';
System.out.println(c);  // Output: 視

JSON:

{"text": "\u8996"}  // Value: 視

Python:

char = '\u8996'
print(char)  # Output: 視

Perl:

my $char = "\x{8996}";
print $char;  # Output: 視

PHP:

$char = "\x{8996}";
echo $char;  // Output: 視

Ruby:

char = "\u{8996}"
puts char  # Output: 視

Rust:

let c = '\u{8996}';
println!("{}", c);  // Output: 視

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008996";  /* Display: 視 */
}

HTML Decimal:

<p>HTML decimal: &#35222;</p>  <!-- Display: 視 -->

HTML Hexadecimal:

<p>HTML hex: &#x8996;</p>  <!-- Display: 視 -->

URL Encoding:

// 視 URL encoding
https://unicodefinder.com/search.php?query=%E8%A6%96

Encodings

MD5:

a7d4339664f1e55734c176955c0d0c77

SHA1:

7029dcfca23d25b61a97d8b44ac5799da8576f78

Base64:

6KaW