Unicode Finder

"鉠" U+9260(CJK UNIFIED IDEOGRAPH-9260)

U+9260
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9260

Programming

C
\u9260
JavaScript
\u9260
Java
\u9260
Json
\u9260
Python
\u9260
Perl
\x{9260}
PHP
\x{9260}
Ruby
\u{9260}
Rust
\u{9260}
Go
\u9260

Web

CSS
\009260
HtmlDecimal
鉠
HtmlHexadecimal
鉠
Url
%E9%89%A0

Code

MD5
a23afcd19eaa837a9baa2e8574370635
Sha1
c8442c2c4e73ff5526918c1246b23e684254bd51
Base64
6Ymg

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9260';
console.log(char);  // Output: 鉠

Java:

char c = '\u9260';
System.out.println(c);  // Output: 鉠

JSON:

{"text": "\u9260"}  // Value: 鉠

Python:

char = '\u9260'
print(char)  # Output: 鉠

Perl:

my $char = "\x{9260}";
print $char;  # Output: 鉠

PHP:

$char = "\x{9260}";
echo $char;  // Output: 鉠

Ruby:

char = "\u{9260}"
puts char  # Output: 鉠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009260";  /* Display: 鉠 */
}

HTML Decimal:

<p>HTML decimal: &#37472;</p>  <!-- Display: 鉠 -->

HTML Hexadecimal:

<p>HTML hex: &#x9260;</p>  <!-- Display: 鉠 -->

URL Encoding:

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

Encodings

MD5:

a23afcd19eaa837a9baa2e8574370635

SHA1:

c8442c2c4e73ff5526918c1246b23e684254bd51

Base64:

6Ymg