Unicode Finder

"遠" U+9060(CJK UNIFIED IDEOGRAPH-9060)

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

Programming

C
\u9060
JavaScript
\u9060
Java
\u9060
Json
\u9060
Python
\u9060
Perl
\x{9060}
PHP
\x{9060}
Ruby
\u{9060}
Rust
\u{9060}
Go
\u9060

Web

CSS
\009060
HtmlDecimal
遠
HtmlHexadecimal
遠
Url
%E9%81%A0

Code

MD5
8a850515a6744d9953bf150c1c9a8889
Sha1
8a017da1c4f44976241dba0dd9351602c20c19d0
Base64
6YGg

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9060';
console.log(char);  // Output: 遠

Java:

char c = '\u9060';
System.out.println(c);  // Output: 遠

JSON:

{"text": "\u9060"}  // Value: 遠

Python:

char = '\u9060'
print(char)  # Output: 遠

Perl:

my $char = "\x{9060}";
print $char;  # Output: 遠

PHP:

$char = "\x{9060}";
echo $char;  // Output: 遠

Ruby:

char = "\u{9060}"
puts char  # Output: 遠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009060";  /* Display: 遠 */
}

HTML Decimal:

<p>HTML decimal: &#36960;</p>  <!-- Display: 遠 -->

HTML Hexadecimal:

<p>HTML hex: &#x9060;</p>  <!-- Display: 遠 -->

URL Encoding:

// 遠 URL encoding
https://unicodefinder.com/search.php?query=%E9%81%A0

Encodings

MD5:

8a850515a6744d9953bf150c1c9a8889

SHA1:

8a017da1c4f44976241dba0dd9351602c20c19d0

Base64:

6YGg