Unicode Finder

"遲" U+9072(CJK UNIFIED IDEOGRAPH-9072)

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

Programming

C
\u9072
JavaScript
\u9072
Java
\u9072
Json
\u9072
Python
\u9072
Perl
\x{9072}
PHP
\x{9072}
Ruby
\u{9072}
Rust
\u{9072}
Go
\u9072

Web

CSS
\009072
HtmlDecimal
遲
HtmlHexadecimal
遲
Url
%E9%81%B2

Code

MD5
4e30462f5c7cc05749b1b1f99e9e0cb3
Sha1
9f50c061f6a8629c24902ec596634b94615b1bca
Base64
6YGy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9072';
console.log(char);  // Output: 遲

Java:

char c = '\u9072';
System.out.println(c);  // Output: 遲

JSON:

{"text": "\u9072"}  // Value: 遲

Python:

char = '\u9072'
print(char)  # Output: 遲

Perl:

my $char = "\x{9072}";
print $char;  # Output: 遲

PHP:

$char = "\x{9072}";
echo $char;  // Output: 遲

Ruby:

char = "\u{9072}"
puts char  # Output: 遲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009072";  /* Display: 遲 */
}

HTML Decimal:

<p>HTML decimal: &#36978;</p>  <!-- Display: 遲 -->

HTML Hexadecimal:

<p>HTML hex: &#x9072;</p>  <!-- Display: 遲 -->

URL Encoding:

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

Encodings

MD5:

4e30462f5c7cc05749b1b1f99e9e0cb3

SHA1:

9f50c061f6a8629c24902ec596634b94615b1bca

Base64:

6YGy