Unicode Finder

"鉇" U+9247(CJK UNIFIED IDEOGRAPH-9247)

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

Programming

C
\u9247
JavaScript
\u9247
Java
\u9247
Json
\u9247
Python
\u9247
Perl
\x{9247}
PHP
\x{9247}
Ruby
\u{9247}
Rust
\u{9247}
Go
\u9247

Web

CSS
\009247
HtmlDecimal
鉇
HtmlHexadecimal
鉇
Url
%E9%89%87

Code

MD5
d5e398684f8d42da40e089aa635df151
Sha1
fc82109ea93ee9579a341e869b94d16a15506e6f
Base64
6YmH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9247';
console.log(char);  // Output: 鉇

Java:

char c = '\u9247';
System.out.println(c);  // Output: 鉇

JSON:

{"text": "\u9247"}  // Value: 鉇

Python:

char = '\u9247'
print(char)  # Output: 鉇

Perl:

my $char = "\x{9247}";
print $char;  # Output: 鉇

PHP:

$char = "\x{9247}";
echo $char;  // Output: 鉇

Ruby:

char = "\u{9247}"
puts char  # Output: 鉇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009247";  /* Display: 鉇 */
}

HTML Decimal:

<p>HTML decimal: &#37447;</p>  <!-- Display: 鉇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9247;</p>  <!-- Display: 鉇 -->

URL Encoding:

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

Encodings

MD5:

d5e398684f8d42da40e089aa635df151

SHA1:

fc82109ea93ee9579a341e869b94d16a15506e6f

Base64:

6YmH