Unicode Finder

"銘" U+9298(CJK UNIFIED IDEOGRAPH-9298)

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

Programming

C
\u9298
JavaScript
\u9298
Java
\u9298
Json
\u9298
Python
\u9298
Perl
\x{9298}
PHP
\x{9298}
Ruby
\u{9298}
Rust
\u{9298}
Go
\u9298

Web

CSS
\009298
HtmlDecimal
銘
HtmlHexadecimal
銘
Url
%E9%8A%98

Code

MD5
9ac126cf203c9cd998fa761ce94a3ed7
Sha1
63f5aa50bc3a9e37af089eaf9ab722034c3f2ff1
Base64
6YqY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9298';
console.log(char);  // Output: 銘

Java:

char c = '\u9298';
System.out.println(c);  // Output: 銘

JSON:

{"text": "\u9298"}  // Value: 銘

Python:

char = '\u9298'
print(char)  # Output: 銘

Perl:

my $char = "\x{9298}";
print $char;  # Output: 銘

PHP:

$char = "\x{9298}";
echo $char;  // Output: 銘

Ruby:

char = "\u{9298}"
puts char  # Output: 銘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009298";  /* Display: 銘 */
}

HTML Decimal:

<p>HTML decimal: &#37528;</p>  <!-- Display: 銘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9298;</p>  <!-- Display: 銘 -->

URL Encoding:

// 銘 URL encoding
https://unicodefinder.com/search.php?query=%E9%8A%98

Encodings

MD5:

9ac126cf203c9cd998fa761ce94a3ed7

SHA1:

63f5aa50bc3a9e37af089eaf9ab722034c3f2ff1

Base64:

6YqY