Unicode Finder

"镱" U+9571(CJK UNIFIED IDEOGRAPH-9571)

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

Programming

C
\u9571
JavaScript
\u9571
Java
\u9571
Json
\u9571
Python
\u9571
Perl
\x{9571}
PHP
\x{9571}
Ruby
\u{9571}
Rust
\u{9571}
Go
\u9571

Web

CSS
\009571
HtmlDecimal
镱
HtmlHexadecimal
镱
Url
%E9%95%B1

Code

MD5
1d5cb07723ad99f87398c31396c81f13
Sha1
7a9137b3a8d60bd75f64c0c2e503b13052ab0853
Base64
6ZWx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9571';
console.log(char);  // Output: 镱

Java:

char c = '\u9571';
System.out.println(c);  // Output: 镱

JSON:

{"text": "\u9571"}  // Value: 镱

Python:

char = '\u9571'
print(char)  # Output: 镱

Perl:

my $char = "\x{9571}";
print $char;  # Output: 镱

PHP:

$char = "\x{9571}";
echo $char;  // Output: 镱

Ruby:

char = "\u{9571}"
puts char  # Output: 镱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009571";  /* Display: 镱 */
}

HTML Decimal:

<p>HTML decimal: &#38257;</p>  <!-- Display: 镱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9571;</p>  <!-- Display: 镱 -->

URL Encoding:

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

Encodings

MD5:

1d5cb07723ad99f87398c31396c81f13

SHA1:

7a9137b3a8d60bd75f64c0c2e503b13052ab0853

Base64:

6ZWx