Unicode Finder

"鋧" U+92E7(CJK UNIFIED IDEOGRAPH-92E7)

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

Programming

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

Web

CSS
\0092E7
HtmlDecimal
鋧
HtmlHexadecimal
鋧
Url
%E9%8B%A7

Code

MD5
29d69082618182d9d2edadddd62826d1
Sha1
edf8e7c626fe36a412fad8e20ca0c543781e89af
Base64
6Yun

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u92E7';
console.log(char);  // Output: 鋧

Java:

char c = '\u92E7';
System.out.println(c);  // Output: 鋧

JSON:

{"text": "\u92E7"}  // Value: 鋧

Python:

char = '\u92E7'
print(char)  # Output: 鋧

Perl:

my $char = "\x{92E7}";
print $char;  # Output: 鋧

PHP:

$char = "\x{92E7}";
echo $char;  // Output: 鋧

Ruby:

char = "\u{92E7}"
puts char  # Output: 鋧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37607;</p>  <!-- Display: 鋧 -->

HTML Hexadecimal:

<p>HTML hex: &#x92E7;</p>  <!-- Display: 鋧 -->

URL Encoding:

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

Encodings

MD5:

29d69082618182d9d2edadddd62826d1

SHA1:

edf8e7c626fe36a412fad8e20ca0c543781e89af

Base64:

6Yun