Unicode Finder

"鉘" U+9258(CJK UNIFIED IDEOGRAPH-9258)

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

Programming

C
\u9258
JavaScript
\u9258
Java
\u9258
Json
\u9258
Python
\u9258
Perl
\x{9258}
PHP
\x{9258}
Ruby
\u{9258}
Rust
\u{9258}
Go
\u9258

Web

CSS
\009258
HtmlDecimal
鉘
HtmlHexadecimal
鉘
Url
%E9%89%98

Code

MD5
79c303bfe9497038f7b74fd65984476e
Sha1
53e046d947f595eb69bb83ab68695f0983763172
Base64
6YmY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9258';
console.log(char);  // Output: 鉘

Java:

char c = '\u9258';
System.out.println(c);  // Output: 鉘

JSON:

{"text": "\u9258"}  // Value: 鉘

Python:

char = '\u9258'
print(char)  # Output: 鉘

Perl:

my $char = "\x{9258}";
print $char;  # Output: 鉘

PHP:

$char = "\x{9258}";
echo $char;  // Output: 鉘

Ruby:

char = "\u{9258}"
puts char  # Output: 鉘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009258";  /* Display: 鉘 */
}

HTML Decimal:

<p>HTML decimal: &#37464;</p>  <!-- Display: 鉘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9258;</p>  <!-- Display: 鉘 -->

URL Encoding:

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

Encodings

MD5:

79c303bfe9497038f7b74fd65984476e

SHA1:

53e046d947f595eb69bb83ab68695f0983763172

Base64:

6YmY