Unicode Finder

"願" U+9858(CJK UNIFIED IDEOGRAPH-9858)

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

Programming

C
\u9858
JavaScript
\u9858
Java
\u9858
Json
\u9858
Python
\u9858
Perl
\x{9858}
PHP
\x{9858}
Ruby
\u{9858}
Rust
\u{9858}
Go
\u9858

Web

CSS
\009858
HtmlDecimal
願
HtmlHexadecimal
願
Url
%E9%A1%98

Code

MD5
9731201023963882fd04acde8a7f25f5
Sha1
95a244ed2714890ab16d97f99f59d470e3ebd96e
Base64
6aGY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9858';
console.log(char);  // Output: 願

Java:

char c = '\u9858';
System.out.println(c);  // Output: 願

JSON:

{"text": "\u9858"}  // Value: 願

Python:

char = '\u9858'
print(char)  # Output: 願

Perl:

my $char = "\x{9858}";
print $char;  # Output: 願

PHP:

$char = "\x{9858}";
echo $char;  // Output: 願

Ruby:

char = "\u{9858}"
puts char  # Output: 願

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009858";  /* Display: 願 */
}

HTML Decimal:

<p>HTML decimal: &#39000;</p>  <!-- Display: 願 -->

HTML Hexadecimal:

<p>HTML hex: &#x9858;</p>  <!-- Display: 願 -->

URL Encoding:

// 願 URL encoding
https://unicodefinder.com/search.php?query=%E9%A1%98

Encodings

MD5:

9731201023963882fd04acde8a7f25f5

SHA1:

95a244ed2714890ab16d97f99f59d470e3ebd96e

Base64:

6aGY