Unicode Finder

"鋎" U+92CE(CJK UNIFIED IDEOGRAPH-92CE)

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

Programming

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

Web

CSS
\0092CE
HtmlDecimal
鋎
HtmlHexadecimal
鋎
Url
%E9%8B%8E

Code

MD5
5b0d211757f1f3b27b624e6b9fabe932
Sha1
c68402bb0b998a1ed114a90c0d2e3f803323f5e8
Base64
6YuO

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u92CE';
console.log(char);  // Output: 鋎

Java:

char c = '\u92CE';
System.out.println(c);  // Output: 鋎

JSON:

{"text": "\u92CE"}  // Value: 鋎

Python:

char = '\u92CE'
print(char)  # Output: 鋎

Perl:

my $char = "\x{92CE}";
print $char;  # Output: 鋎

PHP:

$char = "\x{92CE}";
echo $char;  // Output: 鋎

Ruby:

char = "\u{92CE}"
puts char  # Output: 鋎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37582;</p>  <!-- Display: 鋎 -->

HTML Hexadecimal:

<p>HTML hex: &#x92CE;</p>  <!-- Display: 鋎 -->

URL Encoding:

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

Encodings

MD5:

5b0d211757f1f3b27b624e6b9fabe932

SHA1:

c68402bb0b998a1ed114a90c0d2e3f803323f5e8

Base64:

6YuO