Unicode Finder

"鉂" U+9242(CJK UNIFIED IDEOGRAPH-9242)

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

Programming

C
\u9242
JavaScript
\u9242
Java
\u9242
Json
\u9242
Python
\u9242
Perl
\x{9242}
PHP
\x{9242}
Ruby
\u{9242}
Rust
\u{9242}
Go
\u9242

Web

CSS
\009242
HtmlDecimal
鉂
HtmlHexadecimal
鉂
Url
%E9%89%82

Code

MD5
e47ae3e4ed7afab476985726f5f5a02c
Sha1
39b833fd3ad1d1fa915bab4879c2c39e3a265f8d
Base64
6YmC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9242';
console.log(char);  // Output: 鉂

Java:

char c = '\u9242';
System.out.println(c);  // Output: 鉂

JSON:

{"text": "\u9242"}  // Value: 鉂

Python:

char = '\u9242'
print(char)  # Output: 鉂

Perl:

my $char = "\x{9242}";
print $char;  # Output: 鉂

PHP:

$char = "\x{9242}";
echo $char;  // Output: 鉂

Ruby:

char = "\u{9242}"
puts char  # Output: 鉂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009242";  /* Display: 鉂 */
}

HTML Decimal:

<p>HTML decimal: &#37442;</p>  <!-- Display: 鉂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9242;</p>  <!-- Display: 鉂 -->

URL Encoding:

// 鉂 URL encoding
https://unicodefinder.com/search.php?query=%E9%89%82

Encodings

MD5:

e47ae3e4ed7afab476985726f5f5a02c

SHA1:

39b833fd3ad1d1fa915bab4879c2c39e3a265f8d

Base64:

6YmC