Unicode Finder

"镍" U+954D(CJK UNIFIED IDEOGRAPH-954D)

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

Programming

C
\u954D
JavaScript
\u954D
Java
\u954D
Json
\u954D
Python
\u954D
Perl
\x{954D}
PHP
\x{954D}
Ruby
\u{954D}
Rust
\u{954D}
Go
\u954D

Web

CSS
\00954D
HtmlDecimal
镍
HtmlHexadecimal
镍
Url
%E9%95%8D

Code

MD5
d8263a2cce41e56dead1f58f8ff6aa56
Sha1
6d7a40bbe0db5a0257eb0844ffdd957d337d47dd
Base64
6ZWN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u954D';
console.log(char);  // Output: 镍

Java:

char c = '\u954D';
System.out.println(c);  // Output: 镍

JSON:

{"text": "\u954D"}  // Value: 镍

Python:

char = '\u954D'
print(char)  # Output: 镍

Perl:

my $char = "\x{954D}";
print $char;  # Output: 镍

PHP:

$char = "\x{954D}";
echo $char;  // Output: 镍

Ruby:

char = "\u{954D}"
puts char  # Output: 镍

Rust:

let c = '\u{954D}';
println!("{}", c);  // Output: 镍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00954D";  /* Display: 镍 */
}

HTML Decimal:

<p>HTML decimal: &#38221;</p>  <!-- Display: 镍 -->

HTML Hexadecimal:

<p>HTML hex: &#x954D;</p>  <!-- Display: 镍 -->

URL Encoding:

// 镍 URL encoding
https://unicodefinder.com/search.php?query=%E9%95%8D

Encodings

MD5:

d8263a2cce41e56dead1f58f8ff6aa56

SHA1:

6d7a40bbe0db5a0257eb0844ffdd957d337d47dd

Base64:

6ZWN