Unicode Finder

"銞" U+929E(CJK UNIFIED IDEOGRAPH-929E)

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

Programming

C
\u929E
JavaScript
\u929E
Java
\u929E
Json
\u929E
Python
\u929E
Perl
\x{929E}
PHP
\x{929E}
Ruby
\u{929E}
Rust
\u{929E}
Go
\u929E

Web

CSS
\00929E
HtmlDecimal
銞
HtmlHexadecimal
銞
Url
%E9%8A%9E

Code

MD5
f6313f9cc4a76c42e024b188f18c2e92
Sha1
0249175d5ee62f54ff5360a4882a1c3f12b8bb75
Base64
6Yqe

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u929E';
console.log(char);  // Output: 銞

Java:

char c = '\u929E';
System.out.println(c);  // Output: 銞

JSON:

{"text": "\u929E"}  // Value: 銞

Python:

char = '\u929E'
print(char)  # Output: 銞

Perl:

my $char = "\x{929E}";
print $char;  # Output: 銞

PHP:

$char = "\x{929E}";
echo $char;  // Output: 銞

Ruby:

char = "\u{929E}"
puts char  # Output: 銞

Rust:

let c = '\u{929E}';
println!("{}", c);  // Output: 銞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00929E";  /* Display: 銞 */
}

HTML Decimal:

<p>HTML decimal: &#37534;</p>  <!-- Display: 銞 -->

HTML Hexadecimal:

<p>HTML hex: &#x929E;</p>  <!-- Display: 銞 -->

URL Encoding:

// 銞 URL encoding
https://unicodefinder.com/search.php?query=%E9%8A%9E

Encodings

MD5:

f6313f9cc4a76c42e024b188f18c2e92

SHA1:

0249175d5ee62f54ff5360a4882a1c3f12b8bb75

Base64:

6Yqe