Unicode Finder

"锦" U+9526(CJK UNIFIED IDEOGRAPH-9526)

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

Programming

C
\u9526
JavaScript
\u9526
Java
\u9526
Json
\u9526
Python
\u9526
Perl
\x{9526}
PHP
\x{9526}
Ruby
\u{9526}
Rust
\u{9526}
Go
\u9526

Web

CSS
\009526
HtmlDecimal
锦
HtmlHexadecimal
锦
Url
%E9%94%A6

Code

MD5
c768ebe9969fa330145cefc2bafd1761
Sha1
8587667c2716d2a06940d96ee45678e41f85ee17
Base64
6ZSm

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9526';
console.log(char);  // Output: 锦

Java:

char c = '\u9526';
System.out.println(c);  // Output: 锦

JSON:

{"text": "\u9526"}  // Value: 锦

Python:

char = '\u9526'
print(char)  # Output: 锦

Perl:

my $char = "\x{9526}";
print $char;  # Output: 锦

PHP:

$char = "\x{9526}";
echo $char;  // Output: 锦

Ruby:

char = "\u{9526}"
puts char  # Output: 锦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009526";  /* Display: 锦 */
}

HTML Decimal:

<p>HTML decimal: &#38182;</p>  <!-- Display: 锦 -->

HTML Hexadecimal:

<p>HTML hex: &#x9526;</p>  <!-- Display: 锦 -->

URL Encoding:

// 锦 URL encoding
https://unicodefinder.com/search.php?query=%E9%94%A6

Encodings

MD5:

c768ebe9969fa330145cefc2bafd1761

SHA1:

8587667c2716d2a06940d96ee45678e41f85ee17

Base64:

6ZSm