Unicode Finder

"鑫" U+946B(CJK UNIFIED IDEOGRAPH-946B)

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

Programming

C
\u946B
JavaScript
\u946B
Java
\u946B
Json
\u946B
Python
\u946B
Perl
\x{946B}
PHP
\x{946B}
Ruby
\u{946B}
Rust
\u{946B}
Go
\u946B

Web

CSS
\00946B
HtmlDecimal
鑫
HtmlHexadecimal
鑫
Url
%E9%91%AB

Code

MD5
a5642fff6cb2daf8d6604528b52bd5fa
Sha1
d7e656eedffc6dde99ba1ea9adcd8e805eb7ba87
Base64
6ZGr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u946B';
console.log(char);  // Output: 鑫

Java:

char c = '\u946B';
System.out.println(c);  // Output: 鑫

JSON:

{"text": "\u946B"}  // Value: 鑫

Python:

char = '\u946B'
print(char)  # Output: 鑫

Perl:

my $char = "\x{946B}";
print $char;  # Output: 鑫

PHP:

$char = "\x{946B}";
echo $char;  // Output: 鑫

Ruby:

char = "\u{946B}"
puts char  # Output: 鑫

Rust:

let c = '\u{946B}';
println!("{}", c);  // Output: 鑫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00946B";  /* Display: 鑫 */
}

HTML Decimal:

<p>HTML decimal: &#37995;</p>  <!-- Display: 鑫 -->

HTML Hexadecimal:

<p>HTML hex: &#x946B;</p>  <!-- Display: 鑫 -->

URL Encoding:

// 鑫 URL encoding
https://unicodefinder.com/search.php?query=%E9%91%AB

Encodings

MD5:

a5642fff6cb2daf8d6604528b52bd5fa

SHA1:

d7e656eedffc6dde99ba1ea9adcd8e805eb7ba87

Base64:

6ZGr