Unicode Finder

"遡" U+9061(CJK UNIFIED IDEOGRAPH-9061)

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

Programming

C
\u9061
JavaScript
\u9061
Java
\u9061
Json
\u9061
Python
\u9061
Perl
\x{9061}
PHP
\x{9061}
Ruby
\u{9061}
Rust
\u{9061}
Go
\u9061

Web

CSS
\009061
HtmlDecimal
遡
HtmlHexadecimal
遡
Url
%E9%81%A1

Code

MD5
fc1524266d0d14da05fb8ed4e4306408
Sha1
0f7e120205b7240cfa8f53b88ec94959dc8a078d
Base64
6YGh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9061';
console.log(char);  // Output: 遡

Java:

char c = '\u9061';
System.out.println(c);  // Output: 遡

JSON:

{"text": "\u9061"}  // Value: 遡

Python:

char = '\u9061'
print(char)  # Output: 遡

Perl:

my $char = "\x{9061}";
print $char;  # Output: 遡

PHP:

$char = "\x{9061}";
echo $char;  // Output: 遡

Ruby:

char = "\u{9061}"
puts char  # Output: 遡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009061";  /* Display: 遡 */
}

HTML Decimal:

<p>HTML decimal: &#36961;</p>  <!-- Display: 遡 -->

HTML Hexadecimal:

<p>HTML hex: &#x9061;</p>  <!-- Display: 遡 -->

URL Encoding:

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

Encodings

MD5:

fc1524266d0d14da05fb8ed4e4306408

SHA1:

0f7e120205b7240cfa8f53b88ec94959dc8a078d

Base64:

6YGh