Unicode Finder

"遌" U+904C(CJK UNIFIED IDEOGRAPH-904C)

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

Programming

C
\u904C
JavaScript
\u904C
Java
\u904C
Json
\u904C
Python
\u904C
Perl
\x{904C}
PHP
\x{904C}
Ruby
\u{904C}
Rust
\u{904C}
Go
\u904C

Web

CSS
\00904C
HtmlDecimal
遌
HtmlHexadecimal
遌
Url
%E9%81%8C

Code

MD5
3a68779fa0d6d3c365d3008aa1bb03c8
Sha1
56a164452fd0e16081971e3ecc949a74073bf0bf
Base64
6YGM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u904C';
console.log(char);  // Output: 遌

Java:

char c = '\u904C';
System.out.println(c);  // Output: 遌

JSON:

{"text": "\u904C"}  // Value: 遌

Python:

char = '\u904C'
print(char)  # Output: 遌

Perl:

my $char = "\x{904C}";
print $char;  # Output: 遌

PHP:

$char = "\x{904C}";
echo $char;  // Output: 遌

Ruby:

char = "\u{904C}"
puts char  # Output: 遌

Rust:

let c = '\u{904C}';
println!("{}", c);  // Output: 遌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00904C";  /* Display: 遌 */
}

HTML Decimal:

<p>HTML decimal: &#36940;</p>  <!-- Display: 遌 -->

HTML Hexadecimal:

<p>HTML hex: &#x904C;</p>  <!-- Display: 遌 -->

URL Encoding:

// 遌 URL encoding
https://unicodefinder.com/search.php?query=%E9%81%8C

Encodings

MD5:

3a68779fa0d6d3c365d3008aa1bb03c8

SHA1:

56a164452fd0e16081971e3ecc949a74073bf0bf

Base64:

6YGM