Unicode Finder

"鐋" U+940B(CJK UNIFIED IDEOGRAPH-940B)

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

Programming

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

Web

CSS
\00940B
HtmlDecimal
鐋
HtmlHexadecimal
鐋
Url
%E9%90%8B

Code

MD5
43f7daf93e42dece853be8edb22ef942
Sha1
c8da52df06a140c7c557ffc767f5fee3defef85b
Base64
6ZCL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u940B';
console.log(char);  // Output: 鐋

Java:

char c = '\u940B';
System.out.println(c);  // Output: 鐋

JSON:

{"text": "\u940B"}  // Value: 鐋

Python:

char = '\u940B'
print(char)  # Output: 鐋

Perl:

my $char = "\x{940B}";
print $char;  # Output: 鐋

PHP:

$char = "\x{940B}";
echo $char;  // Output: 鐋

Ruby:

char = "\u{940B}"
puts char  # Output: 鐋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37899;</p>  <!-- Display: 鐋 -->

HTML Hexadecimal:

<p>HTML hex: &#x940B;</p>  <!-- Display: 鐋 -->

URL Encoding:

// 鐋 URL encoding
https://unicodefinder.com/search.php?query=%E9%90%8B

Encodings

MD5:

43f7daf93e42dece853be8edb22ef942

SHA1:

c8da52df06a140c7c557ffc767f5fee3defef85b

Base64:

6ZCL