Unicode Finder

"靅" U+9745(CJK UNIFIED IDEOGRAPH-9745)

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

Programming

C
\u9745
JavaScript
\u9745
Java
\u9745
Json
\u9745
Python
\u9745
Perl
\x{9745}
PHP
\x{9745}
Ruby
\u{9745}
Rust
\u{9745}
Go
\u9745

Web

CSS
\009745
HtmlDecimal
靅
HtmlHexadecimal
靅
Url
%E9%9D%85

Code

MD5
45984e1a4f9ca5db0b800db9e0b07448
Sha1
a9fa8442b0f5d36d777421109c6b7927ac25dc80
Base64
6Z2F

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9745';
console.log(char);  // Output: 靅

Java:

char c = '\u9745';
System.out.println(c);  // Output: 靅

JSON:

{"text": "\u9745"}  // Value: 靅

Python:

char = '\u9745'
print(char)  # Output: 靅

Perl:

my $char = "\x{9745}";
print $char;  # Output: 靅

PHP:

$char = "\x{9745}";
echo $char;  // Output: 靅

Ruby:

char = "\u{9745}"
puts char  # Output: 靅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009745";  /* Display: 靅 */
}

HTML Decimal:

<p>HTML decimal: &#38725;</p>  <!-- Display: 靅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9745;</p>  <!-- Display: 靅 -->

URL Encoding:

// 靅 URL encoding
https://unicodefinder.com/search.php?query=%E9%9D%85

Encodings

MD5:

45984e1a4f9ca5db0b800db9e0b07448

SHA1:

a9fa8442b0f5d36d777421109c6b7927ac25dc80

Base64:

6Z2F