Unicode Finder

"鉆" U+9246(CJK UNIFIED IDEOGRAPH-9246)

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

Programming

C
\u9246
JavaScript
\u9246
Java
\u9246
Json
\u9246
Python
\u9246
Perl
\x{9246}
PHP
\x{9246}
Ruby
\u{9246}
Rust
\u{9246}
Go
\u9246

Web

CSS
\009246
HtmlDecimal
鉆
HtmlHexadecimal
鉆
Url
%E9%89%86

Code

MD5
2f05fed53b8674b50dff8848f3e7a97a
Sha1
24b60dfd813216e33fa932d880447fd075fdf43b
Base64
6YmG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9246';
console.log(char);  // Output: 鉆

Java:

char c = '\u9246';
System.out.println(c);  // Output: 鉆

JSON:

{"text": "\u9246"}  // Value: 鉆

Python:

char = '\u9246'
print(char)  # Output: 鉆

Perl:

my $char = "\x{9246}";
print $char;  # Output: 鉆

PHP:

$char = "\x{9246}";
echo $char;  // Output: 鉆

Ruby:

char = "\u{9246}"
puts char  # Output: 鉆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009246";  /* Display: 鉆 */
}

HTML Decimal:

<p>HTML decimal: &#37446;</p>  <!-- Display: 鉆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9246;</p>  <!-- Display: 鉆 -->

URL Encoding:

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

Encodings

MD5:

2f05fed53b8674b50dff8848f3e7a97a

SHA1:

24b60dfd813216e33fa932d880447fd075fdf43b

Base64:

6YmG