Unicode Finder

"镑" U+9551(CJK UNIFIED IDEOGRAPH-9551)

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

Programming

C
\u9551
JavaScript
\u9551
Java
\u9551
Json
\u9551
Python
\u9551
Perl
\x{9551}
PHP
\x{9551}
Ruby
\u{9551}
Rust
\u{9551}
Go
\u9551

Web

CSS
\009551
HtmlDecimal
镑
HtmlHexadecimal
镑
Url
%E9%95%91

Code

MD5
891e944e99fec8cc691a3e6e497cdce3
Sha1
8e94eaa921999cd8ea1fb43a21a4b3010634de7d
Base64
6ZWR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9551';
console.log(char);  // Output: 镑

Java:

char c = '\u9551';
System.out.println(c);  // Output: 镑

JSON:

{"text": "\u9551"}  // Value: 镑

Python:

char = '\u9551'
print(char)  # Output: 镑

Perl:

my $char = "\x{9551}";
print $char;  # Output: 镑

PHP:

$char = "\x{9551}";
echo $char;  // Output: 镑

Ruby:

char = "\u{9551}"
puts char  # Output: 镑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009551";  /* Display: 镑 */
}

HTML Decimal:

<p>HTML decimal: &#38225;</p>  <!-- Display: 镑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9551;</p>  <!-- Display: 镑 -->

URL Encoding:

// 镑 URL encoding
https://unicodefinder.com/search.php?query=%E9%95%91

Encodings

MD5:

891e944e99fec8cc691a3e6e497cdce3

SHA1:

8e94eaa921999cd8ea1fb43a21a4b3010634de7d

Base64:

6ZWR