Unicode Finder

"興" U+8208(CJK UNIFIED IDEOGRAPH-8208)

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

Programming

C
\u8208
JavaScript
\u8208
Java
\u8208
Json
\u8208
Python
\u8208
Perl
\x{8208}
PHP
\x{8208}
Ruby
\u{8208}
Rust
\u{8208}
Go
\u8208

Web

CSS
\008208
HtmlDecimal
興
HtmlHexadecimal
興
Url
%E8%88%88

Code

MD5
86493ac4e56f848126570cc9bbff08e2
Sha1
af8f4bc8e48006d5dc5b31f5fb379001f05edd5e
Base64
6IiI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8208';
console.log(char);  // Output: 興

Java:

char c = '\u8208';
System.out.println(c);  // Output: 興

JSON:

{"text": "\u8208"}  // Value: 興

Python:

char = '\u8208'
print(char)  # Output: 興

Perl:

my $char = "\x{8208}";
print $char;  # Output: 興

PHP:

$char = "\x{8208}";
echo $char;  // Output: 興

Ruby:

char = "\u{8208}"
puts char  # Output: 興

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008208";  /* Display: 興 */
}

HTML Decimal:

<p>HTML decimal: &#33288;</p>  <!-- Display: 興 -->

HTML Hexadecimal:

<p>HTML hex: &#x8208;</p>  <!-- Display: 興 -->

URL Encoding:

// 興 URL encoding
https://unicodefinder.com/search.php?query=%E8%88%88

Encodings

MD5:

86493ac4e56f848126570cc9bbff08e2

SHA1:

af8f4bc8e48006d5dc5b31f5fb379001f05edd5e

Base64:

6IiI