Unicode Finder

"站" U+7AD9(CJK UNIFIED IDEOGRAPH-7AD9)

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

Programming

C
\u7AD9
JavaScript
\u7AD9
Java
\u7AD9
Json
\u7AD9
Python
\u7AD9
Perl
\x{7AD9}
PHP
\x{7AD9}
Ruby
\u{7AD9}
Rust
\u{7AD9}
Go
\u7AD9

Web

CSS
\007AD9
HtmlDecimal
站
HtmlHexadecimal
站
Url
%E7%AB%99

Code

MD5
4b3774c6a24be93ae5803b8ceacfe7fc
Sha1
bc07b7b167d7ed62ef7a4f414c1ac02291886045
Base64
56uZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AD9';
console.log(char);  // Output: 站

Java:

char c = '\u7AD9';
System.out.println(c);  // Output: 站

JSON:

{"text": "\u7AD9"}  // Value: 站

Python:

char = '\u7AD9'
print(char)  # Output: 站

Perl:

my $char = "\x{7AD9}";
print $char;  # Output: 站

PHP:

$char = "\x{7AD9}";
echo $char;  // Output: 站

Ruby:

char = "\u{7AD9}"
puts char  # Output: 站

Rust:

let c = '\u{7AD9}';
println!("{}", c);  // Output: 站

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007AD9";  /* Display: 站 */
}

HTML Decimal:

<p>HTML decimal: &#31449;</p>  <!-- Display: 站 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AD9;</p>  <!-- Display: 站 -->

URL Encoding:

// 站 URL encoding
https://unicodefinder.com/search.php?query=%E7%AB%99

Encodings

MD5:

4b3774c6a24be93ae5803b8ceacfe7fc

SHA1:

bc07b7b167d7ed62ef7a4f414c1ac02291886045

Base64:

56uZ