Unicode Finder

"鑟" U+945F(CJK UNIFIED IDEOGRAPH-945F)

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

Programming

C
\u945F
JavaScript
\u945F
Java
\u945F
Json
\u945F
Python
\u945F
Perl
\x{945F}
PHP
\x{945F}
Ruby
\u{945F}
Rust
\u{945F}
Go
\u945F

Web

CSS
\00945F
HtmlDecimal
鑟
HtmlHexadecimal
鑟
Url
%E9%91%9F

Code

MD5
f14758ebc8602eca61a9d846679f63bf
Sha1
ca08415e42f5891a8835acb07b8a7cbba8cec551
Base64
6ZGf

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u945F';
console.log(char);  // Output: 鑟

Java:

char c = '\u945F';
System.out.println(c);  // Output: 鑟

JSON:

{"text": "\u945F"}  // Value: 鑟

Python:

char = '\u945F'
print(char)  # Output: 鑟

Perl:

my $char = "\x{945F}";
print $char;  # Output: 鑟

PHP:

$char = "\x{945F}";
echo $char;  // Output: 鑟

Ruby:

char = "\u{945F}"
puts char  # Output: 鑟

Rust:

let c = '\u{945F}';
println!("{}", c);  // Output: 鑟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00945F";  /* Display: 鑟 */
}

HTML Decimal:

<p>HTML decimal: &#37983;</p>  <!-- Display: 鑟 -->

HTML Hexadecimal:

<p>HTML hex: &#x945F;</p>  <!-- Display: 鑟 -->

URL Encoding:

// 鑟 URL encoding
https://unicodefinder.com/search.php?query=%E9%91%9F

Encodings

MD5:

f14758ebc8602eca61a9d846679f63bf

SHA1:

ca08415e42f5891a8835acb07b8a7cbba8cec551

Base64:

6ZGf