Unicode Finder

"還" U+9084(CJK UNIFIED IDEOGRAPH-9084)

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

Programming

C
\u9084
JavaScript
\u9084
Java
\u9084
Json
\u9084
Python
\u9084
Perl
\x{9084}
PHP
\x{9084}
Ruby
\u{9084}
Rust
\u{9084}
Go
\u9084

Web

CSS
\009084
HtmlDecimal
還
HtmlHexadecimal
還
Url
%E9%82%84

Code

MD5
bc39acd548a7c503a9e945d4ed2de0d3
Sha1
755dfd435b4db25a00d7737020f68181953fa341
Base64
6YKE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9084';
console.log(char);  // Output: 還

Java:

char c = '\u9084';
System.out.println(c);  // Output: 還

JSON:

{"text": "\u9084"}  // Value: 還

Python:

char = '\u9084'
print(char)  # Output: 還

Perl:

my $char = "\x{9084}";
print $char;  # Output: 還

PHP:

$char = "\x{9084}";
echo $char;  // Output: 還

Ruby:

char = "\u{9084}"
puts char  # Output: 還

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009084";  /* Display: 還 */
}

HTML Decimal:

<p>HTML decimal: &#36996;</p>  <!-- Display: 還 -->

HTML Hexadecimal:

<p>HTML hex: &#x9084;</p>  <!-- Display: 還 -->

URL Encoding:

// 還 URL encoding
https://unicodefinder.com/search.php?query=%E9%82%84

Encodings

MD5:

bc39acd548a7c503a9e945d4ed2de0d3

SHA1:

755dfd435b4db25a00d7737020f68181953fa341

Base64:

6YKE