Unicode Finder

"遑" U+9051(CJK UNIFIED IDEOGRAPH-9051)

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

Programming

C
\u9051
JavaScript
\u9051
Java
\u9051
Json
\u9051
Python
\u9051
Perl
\x{9051}
PHP
\x{9051}
Ruby
\u{9051}
Rust
\u{9051}
Go
\u9051

Web

CSS
\009051
HtmlDecimal
遑
HtmlHexadecimal
遑
Url
%E9%81%91

Code

MD5
2559719216b78eebd122feacdc786594
Sha1
af5a7d0dacb65ec7a6dd78e1ca697ccf7233f520
Base64
6YGR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9051';
console.log(char);  // Output: 遑

Java:

char c = '\u9051';
System.out.println(c);  // Output: 遑

JSON:

{"text": "\u9051"}  // Value: 遑

Python:

char = '\u9051'
print(char)  # Output: 遑

Perl:

my $char = "\x{9051}";
print $char;  # Output: 遑

PHP:

$char = "\x{9051}";
echo $char;  // Output: 遑

Ruby:

char = "\u{9051}"
puts char  # Output: 遑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009051";  /* Display: 遑 */
}

HTML Decimal:

<p>HTML decimal: &#36945;</p>  <!-- Display: 遑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9051;</p>  <!-- Display: 遑 -->

URL Encoding:

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

Encodings

MD5:

2559719216b78eebd122feacdc786594

SHA1:

af5a7d0dacb65ec7a6dd78e1ca697ccf7233f520

Base64:

6YGR