Unicode Finder

"達" U+9054(CJK UNIFIED IDEOGRAPH-9054)

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

Programming

C
\u9054
JavaScript
\u9054
Java
\u9054
Json
\u9054
Python
\u9054
Perl
\x{9054}
PHP
\x{9054}
Ruby
\u{9054}
Rust
\u{9054}
Go
\u9054

Web

CSS
\009054
HtmlDecimal
達
HtmlHexadecimal
達
Url
%E9%81%94

Code

MD5
8e1461011ea5a43c867e50598531315c
Sha1
8360055fec1bc47312400e3072c6db5d68ccbb13
Base64
6YGU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9054';
console.log(char);  // Output: 達

Java:

char c = '\u9054';
System.out.println(c);  // Output: 達

JSON:

{"text": "\u9054"}  // Value: 達

Python:

char = '\u9054'
print(char)  # Output: 達

Perl:

my $char = "\x{9054}";
print $char;  # Output: 達

PHP:

$char = "\x{9054}";
echo $char;  // Output: 達

Ruby:

char = "\u{9054}"
puts char  # Output: 達

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009054";  /* Display: 達 */
}

HTML Decimal:

<p>HTML decimal: &#36948;</p>  <!-- Display: 達 -->

HTML Hexadecimal:

<p>HTML hex: &#x9054;</p>  <!-- Display: 達 -->

URL Encoding:

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

Encodings

MD5:

8e1461011ea5a43c867e50598531315c

SHA1:

8360055fec1bc47312400e3072c6db5d68ccbb13

Base64:

6YGU