Unicode Finder

"铜" U+94DC(CJK UNIFIED IDEOGRAPH-94DC)

U+94DC
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-94DC

Programming

C
\u94DC
JavaScript
\u94DC
Java
\u94DC
Json
\u94DC
Python
\u94DC
Perl
\x{94DC}
PHP
\x{94DC}
Ruby
\u{94DC}
Rust
\u{94DC}
Go
\u94DC

Web

CSS
\0094DC
HtmlDecimal
铜
HtmlHexadecimal
铜
Url
%E9%93%9C

Code

MD5
7afdc47ca4a6f591a71998c987fa2540
Sha1
56ae29a6eb0d2be8f12acce58dc3940e75064e31
Base64
6ZOc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u94DC';
console.log(char);  // Output: 铜

Java:

char c = '\u94DC';
System.out.println(c);  // Output: 铜

JSON:

{"text": "\u94DC"}  // Value: 铜

Python:

char = '\u94DC'
print(char)  # Output: 铜

Perl:

my $char = "\x{94DC}";
print $char;  # Output: 铜

PHP:

$char = "\x{94DC}";
echo $char;  // Output: 铜

Ruby:

char = "\u{94DC}"
puts char  # Output: 铜

Rust:

let c = '\u{94DC}';
println!("{}", c);  // Output: 铜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0094DC";  /* Display: 铜 */
}

HTML Decimal:

<p>HTML decimal: &#38108;</p>  <!-- Display: 铜 -->

HTML Hexadecimal:

<p>HTML hex: &#x94DC;</p>  <!-- Display: 铜 -->

URL Encoding:

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

Encodings

MD5:

7afdc47ca4a6f591a71998c987fa2540

SHA1:

56ae29a6eb0d2be8f12acce58dc3940e75064e31

Base64:

6ZOc