Unicode Finder

"鎔" U+9394(CJK UNIFIED IDEOGRAPH-9394)

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

Programming

C
\u9394
JavaScript
\u9394
Java
\u9394
Json
\u9394
Python
\u9394
Perl
\x{9394}
PHP
\x{9394}
Ruby
\u{9394}
Rust
\u{9394}
Go
\u9394

Web

CSS
\009394
HtmlDecimal
鎔
HtmlHexadecimal
鎔
Url
%E9%8E%94

Code

MD5
7853264c657feebd26c0323bf1015d5c
Sha1
5cdf799ec7f1162579b3eead266c034cbc96bdb7
Base64
6Y6U

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9394';
console.log(char);  // Output: 鎔

Java:

char c = '\u9394';
System.out.println(c);  // Output: 鎔

JSON:

{"text": "\u9394"}  // Value: 鎔

Python:

char = '\u9394'
print(char)  # Output: 鎔

Perl:

my $char = "\x{9394}";
print $char;  # Output: 鎔

PHP:

$char = "\x{9394}";
echo $char;  // Output: 鎔

Ruby:

char = "\u{9394}"
puts char  # Output: 鎔

Rust:

let c = '\u{9394}';
println!("{}", c);  // Output: 鎔

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009394";  /* Display: 鎔 */
}

HTML Decimal:

<p>HTML decimal: &#37780;</p>  <!-- Display: 鎔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9394;</p>  <!-- Display: 鎔 -->

URL Encoding:

// 鎔 URL encoding
https://unicodefinder.com/search.php?query=%E9%8E%94

Encodings

MD5:

7853264c657feebd26c0323bf1015d5c

SHA1:

5cdf799ec7f1162579b3eead266c034cbc96bdb7

Base64:

6Y6U