Unicode Finder

"鍸" U+9378(CJK UNIFIED IDEOGRAPH-9378)

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

Programming

C
\u9378
JavaScript
\u9378
Java
\u9378
Json
\u9378
Python
\u9378
Perl
\x{9378}
PHP
\x{9378}
Ruby
\u{9378}
Rust
\u{9378}
Go
\u9378

Web

CSS
\009378
HtmlDecimal
鍸
HtmlHexadecimal
鍸
Url
%E9%8D%B8

Code

MD5
351a59a3b9755acf49f3b79505ab3d5f
Sha1
14156c2082ef2ae3c70b7305b73637ed81fa61f7
Base64
6Y24

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9378';
console.log(char);  // Output: 鍸

Java:

char c = '\u9378';
System.out.println(c);  // Output: 鍸

JSON:

{"text": "\u9378"}  // Value: 鍸

Python:

char = '\u9378'
print(char)  # Output: 鍸

Perl:

my $char = "\x{9378}";
print $char;  # Output: 鍸

PHP:

$char = "\x{9378}";
echo $char;  // Output: 鍸

Ruby:

char = "\u{9378}"
puts char  # Output: 鍸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009378";  /* Display: 鍸 */
}

HTML Decimal:

<p>HTML decimal: &#37752;</p>  <!-- Display: 鍸 -->

HTML Hexadecimal:

<p>HTML hex: &#x9378;</p>  <!-- Display: 鍸 -->

URL Encoding:

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

Encodings

MD5:

351a59a3b9755acf49f3b79505ab3d5f

SHA1:

14156c2082ef2ae3c70b7305b73637ed81fa61f7

Base64:

6Y24