Unicode Finder

"遥" U+9065(CJK UNIFIED IDEOGRAPH-9065)

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

Programming

C
\u9065
JavaScript
\u9065
Java
\u9065
Json
\u9065
Python
\u9065
Perl
\x{9065}
PHP
\x{9065}
Ruby
\u{9065}
Rust
\u{9065}
Go
\u9065

Web

CSS
\009065
HtmlDecimal
遥
HtmlHexadecimal
遥
Url
%E9%81%A5

Code

MD5
9942892cc8ccbe915ae3d0eba85f446d
Sha1
d019b42e0e91e5a5b3fe2f35ca1c839003d942d2
Base64
6YGl

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9065';
console.log(char);  // Output: 遥

Java:

char c = '\u9065';
System.out.println(c);  // Output: 遥

JSON:

{"text": "\u9065"}  // Value: 遥

Python:

char = '\u9065'
print(char)  # Output: 遥

Perl:

my $char = "\x{9065}";
print $char;  # Output: 遥

PHP:

$char = "\x{9065}";
echo $char;  // Output: 遥

Ruby:

char = "\u{9065}"
puts char  # Output: 遥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009065";  /* Display: 遥 */
}

HTML Decimal:

<p>HTML decimal: &#36965;</p>  <!-- Display: 遥 -->

HTML Hexadecimal:

<p>HTML hex: &#x9065;</p>  <!-- Display: 遥 -->

URL Encoding:

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

Encodings

MD5:

9942892cc8ccbe915ae3d0eba85f446d

SHA1:

d019b42e0e91e5a5b3fe2f35ca1c839003d942d2

Base64:

6YGl