Unicode Finder

"鋘" U+92D8(CJK UNIFIED IDEOGRAPH-92D8)

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

Programming

C
\u92D8
JavaScript
\u92D8
Java
\u92D8
Json
\u92D8
Python
\u92D8
Perl
\x{92D8}
PHP
\x{92D8}
Ruby
\u{92D8}
Rust
\u{92D8}
Go
\u92D8

Web

CSS
\0092D8
HtmlDecimal
鋘
HtmlHexadecimal
鋘
Url
%E9%8B%98

Code

MD5
86a1ecd4241e174ee5c9eaa2b3464133
Sha1
19f3cbe4bd20cf927cf069e0c45ec54618f92ef7
Base64
6YuY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u92D8';
console.log(char);  // Output: 鋘

Java:

char c = '\u92D8';
System.out.println(c);  // Output: 鋘

JSON:

{"text": "\u92D8"}  // Value: 鋘

Python:

char = '\u92D8'
print(char)  # Output: 鋘

Perl:

my $char = "\x{92D8}";
print $char;  # Output: 鋘

PHP:

$char = "\x{92D8}";
echo $char;  // Output: 鋘

Ruby:

char = "\u{92D8}"
puts char  # Output: 鋘

Rust:

let c = '\u{92D8}';
println!("{}", c);  // Output: 鋘

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0092D8";  /* Display: 鋘 */
}

HTML Decimal:

<p>HTML decimal: &#37592;</p>  <!-- Display: 鋘 -->

HTML Hexadecimal:

<p>HTML hex: &#x92D8;</p>  <!-- Display: 鋘 -->

URL Encoding:

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

Encodings

MD5:

86a1ecd4241e174ee5c9eaa2b3464133

SHA1:

19f3cbe4bd20cf927cf069e0c45ec54618f92ef7

Base64:

6YuY