Unicode Finder

"鍄" U+9344(CJK UNIFIED IDEOGRAPH-9344)

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

Programming

C
\u9344
JavaScript
\u9344
Java
\u9344
Json
\u9344
Python
\u9344
Perl
\x{9344}
PHP
\x{9344}
Ruby
\u{9344}
Rust
\u{9344}
Go
\u9344

Web

CSS
\009344
HtmlDecimal
鍄
HtmlHexadecimal
鍄
Url
%E9%8D%84

Code

MD5
6fdf71000e2824dbc3e22b6982fdd113
Sha1
192b592177dbf6776fdba2b2a144dcb002d63d9c
Base64
6Y2E

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9344';
console.log(char);  // Output: 鍄

Java:

char c = '\u9344';
System.out.println(c);  // Output: 鍄

JSON:

{"text": "\u9344"}  // Value: 鍄

Python:

char = '\u9344'
print(char)  # Output: 鍄

Perl:

my $char = "\x{9344}";
print $char;  # Output: 鍄

PHP:

$char = "\x{9344}";
echo $char;  // Output: 鍄

Ruby:

char = "\u{9344}"
puts char  # Output: 鍄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009344";  /* Display: 鍄 */
}

HTML Decimal:

<p>HTML decimal: &#37700;</p>  <!-- Display: 鍄 -->

HTML Hexadecimal:

<p>HTML hex: &#x9344;</p>  <!-- Display: 鍄 -->

URL Encoding:

// 鍄 URL encoding
https://unicodefinder.com/search.php?query=%E9%8D%84

Encodings

MD5:

6fdf71000e2824dbc3e22b6982fdd113

SHA1:

192b592177dbf6776fdba2b2a144dcb002d63d9c

Base64:

6Y2E