Unicode Finder

"鍹" U+9379(CJK UNIFIED IDEOGRAPH-9379)

U+9379
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9379

Programming

C
\u9379
JavaScript
\u9379
Java
\u9379
Json
\u9379
Python
\u9379
Perl
\x{9379}
PHP
\x{9379}
Ruby
\u{9379}
Rust
\u{9379}
Go
\u9379

Web

CSS
\009379
HtmlDecimal
鍹
HtmlHexadecimal
鍹
Url
%E9%8D%B9

Code

MD5
f531097d0fc1a6406fe218cce7b5dcc9
Sha1
c3124f1df82ce1ba36e6f1307e0ce508611e76af
Base64
6Y25

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9379';
console.log(char);  // Output: 鍹

Java:

char c = '\u9379';
System.out.println(c);  // Output: 鍹

JSON:

{"text": "\u9379"}  // Value: 鍹

Python:

char = '\u9379'
print(char)  # Output: 鍹

Perl:

my $char = "\x{9379}";
print $char;  # Output: 鍹

PHP:

$char = "\x{9379}";
echo $char;  // Output: 鍹

Ruby:

char = "\u{9379}"
puts char  # Output: 鍹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009379";  /* Display: 鍹 */
}

HTML Decimal:

<p>HTML decimal: &#37753;</p>  <!-- Display: 鍹 -->

HTML Hexadecimal:

<p>HTML hex: &#x9379;</p>  <!-- Display: 鍹 -->

URL Encoding:

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

Encodings

MD5:

f531097d0fc1a6406fe218cce7b5dcc9

SHA1:

c3124f1df82ce1ba36e6f1307e0ce508611e76af

Base64:

6Y25