Unicode Finder

"鋑" U+92D1(CJK UNIFIED IDEOGRAPH-92D1)

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

Programming

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

Web

CSS
\0092D1
HtmlDecimal
鋑
HtmlHexadecimal
鋑
Url
%E9%8B%91

Code

MD5
d023f220fad64c5fdc859b7d5ae080d7
Sha1
0d5e0d5f9515d401ce50f95a9fd4be49ddd0e789
Base64
6YuR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u92D1';
console.log(char);  // Output: 鋑

Java:

char c = '\u92D1';
System.out.println(c);  // Output: 鋑

JSON:

{"text": "\u92D1"}  // Value: 鋑

Python:

char = '\u92D1'
print(char)  # Output: 鋑

Perl:

my $char = "\x{92D1}";
print $char;  # Output: 鋑

PHP:

$char = "\x{92D1}";
echo $char;  // Output: 鋑

Ruby:

char = "\u{92D1}"
puts char  # Output: 鋑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37585;</p>  <!-- Display: 鋑 -->

HTML Hexadecimal:

<p>HTML hex: &#x92D1;</p>  <!-- Display: 鋑 -->

URL Encoding:

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

Encodings

MD5:

d023f220fad64c5fdc859b7d5ae080d7

SHA1:

0d5e0d5f9515d401ce50f95a9fd4be49ddd0e789

Base64:

6YuR