Unicode Finder

"鋃" U+92C3(CJK UNIFIED IDEOGRAPH-92C3)

U+92C3
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-92C3

Programming

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

Web

CSS
\0092C3
HtmlDecimal
鋃
HtmlHexadecimal
鋃
Url
%E9%8B%83

Code

MD5
6b103cb9cdb678a996866965857dc019
Sha1
5e24e40d3accf0ac886f6f9d9f5911870e5f5dee
Base64
6YuD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u92C3';
console.log(char);  // Output: 鋃

Java:

char c = '\u92C3';
System.out.println(c);  // Output: 鋃

JSON:

{"text": "\u92C3"}  // Value: 鋃

Python:

char = '\u92C3'
print(char)  # Output: 鋃

Perl:

my $char = "\x{92C3}";
print $char;  # Output: 鋃

PHP:

$char = "\x{92C3}";
echo $char;  // Output: 鋃

Ruby:

char = "\u{92C3}"
puts char  # Output: 鋃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37571;</p>  <!-- Display: 鋃 -->

HTML Hexadecimal:

<p>HTML hex: &#x92C3;</p>  <!-- Display: 鋃 -->

URL Encoding:

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

Encodings

MD5:

6b103cb9cdb678a996866965857dc019

SHA1:

5e24e40d3accf0ac886f6f9d9f5911870e5f5dee

Base64:

6YuD