Unicode Finder

"镥" U+9565(CJK UNIFIED IDEOGRAPH-9565)

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

Programming

C
\u9565
JavaScript
\u9565
Java
\u9565
Json
\u9565
Python
\u9565
Perl
\x{9565}
PHP
\x{9565}
Ruby
\u{9565}
Rust
\u{9565}
Go
\u9565

Web

CSS
\009565
HtmlDecimal
镥
HtmlHexadecimal
镥
Url
%E9%95%A5

Code

MD5
29a1dc4e77f3701b0c29a00aa4daa2cc
Sha1
7169194c4a5ef7c717633719b949dd2717c57852
Base64
6ZWl

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9565';
console.log(char);  // Output: 镥

Java:

char c = '\u9565';
System.out.println(c);  // Output: 镥

JSON:

{"text": "\u9565"}  // Value: 镥

Python:

char = '\u9565'
print(char)  # Output: 镥

Perl:

my $char = "\x{9565}";
print $char;  # Output: 镥

PHP:

$char = "\x{9565}";
echo $char;  // Output: 镥

Ruby:

char = "\u{9565}"
puts char  # Output: 镥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009565";  /* Display: 镥 */
}

HTML Decimal:

<p>HTML decimal: &#38245;</p>  <!-- Display: 镥 -->

HTML Hexadecimal:

<p>HTML hex: &#x9565;</p>  <!-- Display: 镥 -->

URL Encoding:

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

Encodings

MD5:

29a1dc4e77f3701b0c29a00aa4daa2cc

SHA1:

7169194c4a5ef7c717633719b949dd2717c57852

Base64:

6ZWl