Unicode Finder

"鈈" U+9208(CJK UNIFIED IDEOGRAPH-9208)

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

Programming

C
\u9208
JavaScript
\u9208
Java
\u9208
Json
\u9208
Python
\u9208
Perl
\x{9208}
PHP
\x{9208}
Ruby
\u{9208}
Rust
\u{9208}
Go
\u9208

Web

CSS
\009208
HtmlDecimal
鈈
HtmlHexadecimal
鈈
Url
%E9%88%88

Code

MD5
8d18a1adcb0c7b6ed37f21ba119acd8d
Sha1
88ae14a38b5c6e6c2872edbf4eca22c6a806fb21
Base64
6YiI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9208';
console.log(char);  // Output: 鈈

Java:

char c = '\u9208';
System.out.println(c);  // Output: 鈈

JSON:

{"text": "\u9208"}  // Value: 鈈

Python:

char = '\u9208'
print(char)  # Output: 鈈

Perl:

my $char = "\x{9208}";
print $char;  # Output: 鈈

PHP:

$char = "\x{9208}";
echo $char;  // Output: 鈈

Ruby:

char = "\u{9208}"
puts char  # Output: 鈈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009208";  /* Display: 鈈 */
}

HTML Decimal:

<p>HTML decimal: &#37384;</p>  <!-- Display: 鈈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9208;</p>  <!-- Display: 鈈 -->

URL Encoding:

// 鈈 URL encoding
https://unicodefinder.com/search.php?query=%E9%88%88

Encodings

MD5:

8d18a1adcb0c7b6ed37f21ba119acd8d

SHA1:

88ae14a38b5c6e6c2872edbf4eca22c6a806fb21

Base64:

6YiI