Unicode Finder

"镣" U+9563(CJK UNIFIED IDEOGRAPH-9563)

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

Programming

C
\u9563
JavaScript
\u9563
Java
\u9563
Json
\u9563
Python
\u9563
Perl
\x{9563}
PHP
\x{9563}
Ruby
\u{9563}
Rust
\u{9563}
Go
\u9563

Web

CSS
\009563
HtmlDecimal
镣
HtmlHexadecimal
镣
Url
%E9%95%A3

Code

MD5
5465f9545869e426ddadff42a4c04fbd
Sha1
4599abf89611bdd92c0c13f29ea91df66e1d35d6
Base64
6ZWj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9563';
console.log(char);  // Output: 镣

Java:

char c = '\u9563';
System.out.println(c);  // Output: 镣

JSON:

{"text": "\u9563"}  // Value: 镣

Python:

char = '\u9563'
print(char)  # Output: 镣

Perl:

my $char = "\x{9563}";
print $char;  # Output: 镣

PHP:

$char = "\x{9563}";
echo $char;  // Output: 镣

Ruby:

char = "\u{9563}"
puts char  # Output: 镣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009563";  /* Display: 镣 */
}

HTML Decimal:

<p>HTML decimal: &#38243;</p>  <!-- Display: 镣 -->

HTML Hexadecimal:

<p>HTML hex: &#x9563;</p>  <!-- Display: 镣 -->

URL Encoding:

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

Encodings

MD5:

5465f9545869e426ddadff42a4c04fbd

SHA1:

4599abf89611bdd92c0c13f29ea91df66e1d35d6

Base64:

6ZWj