Unicode Finder

"钔" U+9494(CJK UNIFIED IDEOGRAPH-9494)

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

Programming

C
\u9494
JavaScript
\u9494
Java
\u9494
Json
\u9494
Python
\u9494
Perl
\x{9494}
PHP
\x{9494}
Ruby
\u{9494}
Rust
\u{9494}
Go
\u9494

Web

CSS
\009494
HtmlDecimal
钔
HtmlHexadecimal
钔
Url
%E9%92%94

Code

MD5
5e07cca51fa25f82763217a48ca5341d
Sha1
9e02c2caf13cab3875e4327bb3bdc785e31670c0
Base64
6ZKU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9494';
console.log(char);  // Output: 钔

Java:

char c = '\u9494';
System.out.println(c);  // Output: 钔

JSON:

{"text": "\u9494"}  // Value: 钔

Python:

char = '\u9494'
print(char)  # Output: 钔

Perl:

my $char = "\x{9494}";
print $char;  # Output: 钔

PHP:

$char = "\x{9494}";
echo $char;  // Output: 钔

Ruby:

char = "\u{9494}"
puts char  # Output: 钔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009494";  /* Display: 钔 */
}

HTML Decimal:

<p>HTML decimal: &#38036;</p>  <!-- Display: 钔 -->

HTML Hexadecimal:

<p>HTML hex: &#x9494;</p>  <!-- Display: 钔 -->

URL Encoding:

// 钔 URL encoding
https://unicodefinder.com/search.php?query=%E9%92%94

Encodings

MD5:

5e07cca51fa25f82763217a48ca5341d

SHA1:

9e02c2caf13cab3875e4327bb3bdc785e31670c0

Base64:

6ZKU