Unicode Finder

"遢" U+9062(CJK UNIFIED IDEOGRAPH-9062)

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

Programming

C
\u9062
JavaScript
\u9062
Java
\u9062
Json
\u9062
Python
\u9062
Perl
\x{9062}
PHP
\x{9062}
Ruby
\u{9062}
Rust
\u{9062}
Go
\u9062

Web

CSS
\009062
HtmlDecimal
遢
HtmlHexadecimal
遢
Url
%E9%81%A2

Code

MD5
90db8254fad0ff9a0374130cf27d633c
Sha1
3bdfba66982a8b31de4c3900a885053cd045ed65
Base64
6YGi

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9062';
console.log(char);  // Output: 遢

Java:

char c = '\u9062';
System.out.println(c);  // Output: 遢

JSON:

{"text": "\u9062"}  // Value: 遢

Python:

char = '\u9062'
print(char)  # Output: 遢

Perl:

my $char = "\x{9062}";
print $char;  # Output: 遢

PHP:

$char = "\x{9062}";
echo $char;  // Output: 遢

Ruby:

char = "\u{9062}"
puts char  # Output: 遢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009062";  /* Display: 遢 */
}

HTML Decimal:

<p>HTML decimal: &#36962;</p>  <!-- Display: 遢 -->

HTML Hexadecimal:

<p>HTML hex: &#x9062;</p>  <!-- Display: 遢 -->

URL Encoding:

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

Encodings

MD5:

90db8254fad0ff9a0374130cf27d633c

SHA1:

3bdfba66982a8b31de4c3900a885053cd045ed65

Base64:

6YGi