Unicode Finder

"銗" U+9297(CJK UNIFIED IDEOGRAPH-9297)

U+9297
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9297

Programming

C
\u9297
JavaScript
\u9297
Java
\u9297
Json
\u9297
Python
\u9297
Perl
\x{9297}
PHP
\x{9297}
Ruby
\u{9297}
Rust
\u{9297}
Go
\u9297

Web

CSS
\009297
HtmlDecimal
銗
HtmlHexadecimal
銗
Url
%E9%8A%97

Code

MD5
60eed4efce17df5b03f94f7d838dbfdf
Sha1
f616f105176a6f844510bb2e0099d9e7ce318377
Base64
6YqX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9297';
console.log(char);  // Output: 銗

Java:

char c = '\u9297';
System.out.println(c);  // Output: 銗

JSON:

{"text": "\u9297"}  // Value: 銗

Python:

char = '\u9297'
print(char)  # Output: 銗

Perl:

my $char = "\x{9297}";
print $char;  # Output: 銗

PHP:

$char = "\x{9297}";
echo $char;  // Output: 銗

Ruby:

char = "\u{9297}"
puts char  # Output: 銗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009297";  /* Display: 銗 */
}

HTML Decimal:

<p>HTML decimal: &#37527;</p>  <!-- Display: 銗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9297;</p>  <!-- Display: 銗 -->

URL Encoding:

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

Encodings

MD5:

60eed4efce17df5b03f94f7d838dbfdf

SHA1:

f616f105176a6f844510bb2e0099d9e7ce318377

Base64:

6YqX