Unicode Finder

"遳" U+9073(CJK UNIFIED IDEOGRAPH-9073)

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

Programming

C
\u9073
JavaScript
\u9073
Java
\u9073
Json
\u9073
Python
\u9073
Perl
\x{9073}
PHP
\x{9073}
Ruby
\u{9073}
Rust
\u{9073}
Go
\u9073

Web

CSS
\009073
HtmlDecimal
遳
HtmlHexadecimal
遳
Url
%E9%81%B3

Code

MD5
98238710f2598fe5e504abe1d2b9a0e9
Sha1
177c413fc90f8dcd2cb0ef9776c7885c6b172c64
Base64
6YGz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9073';
console.log(char);  // Output: 遳

Java:

char c = '\u9073';
System.out.println(c);  // Output: 遳

JSON:

{"text": "\u9073"}  // Value: 遳

Python:

char = '\u9073'
print(char)  # Output: 遳

Perl:

my $char = "\x{9073}";
print $char;  # Output: 遳

PHP:

$char = "\x{9073}";
echo $char;  // Output: 遳

Ruby:

char = "\u{9073}"
puts char  # Output: 遳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009073";  /* Display: 遳 */
}

HTML Decimal:

<p>HTML decimal: &#36979;</p>  <!-- Display: 遳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9073;</p>  <!-- Display: 遳 -->

URL Encoding:

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

Encodings

MD5:

98238710f2598fe5e504abe1d2b9a0e9

SHA1:

177c413fc90f8dcd2cb0ef9776c7885c6b172c64

Base64:

6YGz