Unicode Finder

"镳" U+9573(CJK UNIFIED IDEOGRAPH-9573)

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

Programming

C
\u9573
JavaScript
\u9573
Java
\u9573
Json
\u9573
Python
\u9573
Perl
\x{9573}
PHP
\x{9573}
Ruby
\u{9573}
Rust
\u{9573}
Go
\u9573

Web

CSS
\009573
HtmlDecimal
镳
HtmlHexadecimal
镳
Url
%E9%95%B3

Code

MD5
126db76bbd82ee41f3954acb5dc7fc60
Sha1
30cd096425cdf754301f236ec335c6cd5d41857e
Base64
6ZWz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9573';
console.log(char);  // Output: 镳

Java:

char c = '\u9573';
System.out.println(c);  // Output: 镳

JSON:

{"text": "\u9573"}  // Value: 镳

Python:

char = '\u9573'
print(char)  # Output: 镳

Perl:

my $char = "\x{9573}";
print $char;  # Output: 镳

PHP:

$char = "\x{9573}";
echo $char;  // Output: 镳

Ruby:

char = "\u{9573}"
puts char  # Output: 镳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009573";  /* Display: 镳 */
}

HTML Decimal:

<p>HTML decimal: &#38259;</p>  <!-- Display: 镳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9573;</p>  <!-- Display: 镳 -->

URL Encoding:

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

Encodings

MD5:

126db76bbd82ee41f3954acb5dc7fc60

SHA1:

30cd096425cdf754301f236ec335c6cd5d41857e

Base64:

6ZWz