Unicode Finder

"鋋" U+92CB(CJK UNIFIED IDEOGRAPH-92CB)

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

Programming

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

Web

CSS
\0092CB
HtmlDecimal
鋋
HtmlHexadecimal
鋋
Url
%E9%8B%8B

Code

MD5
a639e67d7a662445ea4a0007e5dd6b4a
Sha1
dc8bd8252913c4f31a5a8f720794f869ea50ef40
Base64
6YuL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u92CB';
console.log(char);  // Output: 鋋

Java:

char c = '\u92CB';
System.out.println(c);  // Output: 鋋

JSON:

{"text": "\u92CB"}  // Value: 鋋

Python:

char = '\u92CB'
print(char)  # Output: 鋋

Perl:

my $char = "\x{92CB}";
print $char;  # Output: 鋋

PHP:

$char = "\x{92CB}";
echo $char;  // Output: 鋋

Ruby:

char = "\u{92CB}"
puts char  # Output: 鋋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37579;</p>  <!-- Display: 鋋 -->

HTML Hexadecimal:

<p>HTML hex: &#x92CB;</p>  <!-- Display: 鋋 -->

URL Encoding:

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

Encodings

MD5:

a639e67d7a662445ea4a0007e5dd6b4a

SHA1:

dc8bd8252913c4f31a5a8f720794f869ea50ef40

Base64:

6YuL