Unicode Finder

"靑" U+9751(CJK UNIFIED IDEOGRAPH-9751)

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

Programming

C
\u9751
JavaScript
\u9751
Java
\u9751
Json
\u9751
Python
\u9751
Perl
\x{9751}
PHP
\x{9751}
Ruby
\u{9751}
Rust
\u{9751}
Go
\u9751

Web

CSS
\009751
HtmlDecimal
靑
HtmlHexadecimal
靑
Url
%E9%9D%91

Code

MD5
2c9016d99d1e94f9884eba58a32e2b34
Sha1
96582b1722b30cc15387f0674ff1cb0e5f9a4d75
Base64
6Z2R

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9751';
console.log(char);  // Output: 靑

Java:

char c = '\u9751';
System.out.println(c);  // Output: 靑

JSON:

{"text": "\u9751"}  // Value: 靑

Python:

char = '\u9751'
print(char)  # Output: 靑

Perl:

my $char = "\x{9751}";
print $char;  # Output: 靑

PHP:

$char = "\x{9751}";
echo $char;  // Output: 靑

Ruby:

char = "\u{9751}"
puts char  # Output: 靑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009751";  /* Display: 靑 */
}

HTML Decimal:

<p>HTML decimal: &#38737;</p>  <!-- Display: 靑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9751;</p>  <!-- Display: 靑 -->

URL Encoding:

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

Encodings

MD5:

2c9016d99d1e94f9884eba58a32e2b34

SHA1:

96582b1722b30cc15387f0674ff1cb0e5f9a4d75

Base64:

6Z2R