Unicode Finder

"鉥" U+9265(CJK UNIFIED IDEOGRAPH-9265)

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

Programming

C
\u9265
JavaScript
\u9265
Java
\u9265
Json
\u9265
Python
\u9265
Perl
\x{9265}
PHP
\x{9265}
Ruby
\u{9265}
Rust
\u{9265}
Go
\u9265

Web

CSS
\009265
HtmlDecimal
鉥
HtmlHexadecimal
鉥
Url
%E9%89%A5

Code

MD5
85aac5b612ca86bb8e6b16e1effe208d
Sha1
907e0b31964f6820ace6ddf96f1c988170fb5ac0
Base64
6Yml

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9265';
console.log(char);  // Output: 鉥

Java:

char c = '\u9265';
System.out.println(c);  // Output: 鉥

JSON:

{"text": "\u9265"}  // Value: 鉥

Python:

char = '\u9265'
print(char)  # Output: 鉥

Perl:

my $char = "\x{9265}";
print $char;  # Output: 鉥

PHP:

$char = "\x{9265}";
echo $char;  // Output: 鉥

Ruby:

char = "\u{9265}"
puts char  # Output: 鉥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009265";  /* Display: 鉥 */
}

HTML Decimal:

<p>HTML decimal: &#37477;</p>  <!-- Display: 鉥 -->

HTML Hexadecimal:

<p>HTML hex: &#x9265;</p>  <!-- Display: 鉥 -->

URL Encoding:

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

Encodings

MD5:

85aac5b612ca86bb8e6b16e1effe208d

SHA1:

907e0b31964f6820ace6ddf96f1c988170fb5ac0

Base64:

6Yml