Unicode Finder

"銭" U+92AD(CJK UNIFIED IDEOGRAPH-92AD)

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

Programming

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

Web

CSS
\0092AD
HtmlDecimal
銭
HtmlHexadecimal
銭
Url
%E9%8A%AD

Code

MD5
3f70752d9c5b0cb1119302ddc29f7ff4
Sha1
597dc8b50e9254a04f2f04846b9b343b5963ecb4
Base64
6Yqt

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u92AD';
console.log(char);  // Output: 銭

Java:

char c = '\u92AD';
System.out.println(c);  // Output: 銭

JSON:

{"text": "\u92AD"}  // Value: 銭

Python:

char = '\u92AD'
print(char)  # Output: 銭

Perl:

my $char = "\x{92AD}";
print $char;  # Output: 銭

PHP:

$char = "\x{92AD}";
echo $char;  // Output: 銭

Ruby:

char = "\u{92AD}"
puts char  # Output: 銭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37549;</p>  <!-- Display: 銭 -->

HTML Hexadecimal:

<p>HTML hex: &#x92AD;</p>  <!-- Display: 銭 -->

URL Encoding:

// 銭 URL encoding
https://unicodefinder.com/search.php?query=%E9%8A%AD

Encodings

MD5:

3f70752d9c5b0cb1119302ddc29f7ff4

SHA1:

597dc8b50e9254a04f2f04846b9b343b5963ecb4

Base64:

6Yqt