Unicode Finder

"遇" U+9047(CJK UNIFIED IDEOGRAPH-9047)

U+9047
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9047

Programming

C
\u9047
JavaScript
\u9047
Java
\u9047
Json
\u9047
Python
\u9047
Perl
\x{9047}
PHP
\x{9047}
Ruby
\u{9047}
Rust
\u{9047}
Go
\u9047

Web

CSS
\009047
HtmlDecimal
遇
HtmlHexadecimal
遇
Url
%E9%81%87

Code

MD5
f11ece931eebe8b33e594b49c5d1916e
Sha1
6d4dff01283a2f9eb4e6b26d57f68f43ba68aa54
Base64
6YGH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9047';
console.log(char);  // Output: 遇

Java:

char c = '\u9047';
System.out.println(c);  // Output: 遇

JSON:

{"text": "\u9047"}  // Value: 遇

Python:

char = '\u9047'
print(char)  # Output: 遇

Perl:

my $char = "\x{9047}";
print $char;  # Output: 遇

PHP:

$char = "\x{9047}";
echo $char;  // Output: 遇

Ruby:

char = "\u{9047}"
puts char  # Output: 遇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009047";  /* Display: 遇 */
}

HTML Decimal:

<p>HTML decimal: &#36935;</p>  <!-- Display: 遇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9047;</p>  <!-- Display: 遇 -->

URL Encoding:

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

Encodings

MD5:

f11ece931eebe8b33e594b49c5d1916e

SHA1:

6d4dff01283a2f9eb4e6b26d57f68f43ba68aa54

Base64:

6YGH