Unicode Finder

"鑜" U+945C(CJK UNIFIED IDEOGRAPH-945C)

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

Programming

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

Web

CSS
\00945C
HtmlDecimal
鑜
HtmlHexadecimal
鑜
Url
%E9%91%9C

Code

MD5
5d2f5e5c918ab06e77c254c7572e788a
Sha1
d7946ff9fcec2ac7152e57eb527d36d2f53fc0b3
Base64
6ZGc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u945C';
console.log(char);  // Output: 鑜

Java:

char c = '\u945C';
System.out.println(c);  // Output: 鑜

JSON:

{"text": "\u945C"}  // Value: 鑜

Python:

char = '\u945C'
print(char)  # Output: 鑜

Perl:

my $char = "\x{945C}";
print $char;  # Output: 鑜

PHP:

$char = "\x{945C}";
echo $char;  // Output: 鑜

Ruby:

char = "\u{945C}"
puts char  # Output: 鑜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37980;</p>  <!-- Display: 鑜 -->

HTML Hexadecimal:

<p>HTML hex: &#x945C;</p>  <!-- Display: 鑜 -->

URL Encoding:

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

Encodings

MD5:

5d2f5e5c918ab06e77c254c7572e788a

SHA1:

d7946ff9fcec2ac7152e57eb527d36d2f53fc0b3

Base64:

6ZGc