Unicode Finder

"锧" U+9527(CJK UNIFIED IDEOGRAPH-9527)

U+9527
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9527

Programming

C
\u9527
JavaScript
\u9527
Java
\u9527
Json
\u9527
Python
\u9527
Perl
\x{9527}
PHP
\x{9527}
Ruby
\u{9527}
Rust
\u{9527}
Go
\u9527

Web

CSS
\009527
HtmlDecimal
锧
HtmlHexadecimal
锧
Url
%E9%94%A7

Code

MD5
72521a810d9509ee6f00f5ff8f0a96c1
Sha1
481b98cf0f8c8aa9c535b829d25d8ae0e1355ef1
Base64
6ZSn

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9527';
console.log(char);  // Output: 锧

Java:

char c = '\u9527';
System.out.println(c);  // Output: 锧

JSON:

{"text": "\u9527"}  // Value: 锧

Python:

char = '\u9527'
print(char)  # Output: 锧

Perl:

my $char = "\x{9527}";
print $char;  # Output: 锧

PHP:

$char = "\x{9527}";
echo $char;  // Output: 锧

Ruby:

char = "\u{9527}"
puts char  # Output: 锧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009527";  /* Display: 锧 */
}

HTML Decimal:

<p>HTML decimal: &#38183;</p>  <!-- Display: 锧 -->

HTML Hexadecimal:

<p>HTML hex: &#x9527;</p>  <!-- Display: 锧 -->

URL Encoding:

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

Encodings

MD5:

72521a810d9509ee6f00f5ff8f0a96c1

SHA1:

481b98cf0f8c8aa9c535b829d25d8ae0e1355ef1

Base64:

6ZSn