Unicode Finder

"钱" U+94B1(CJK UNIFIED IDEOGRAPH-94B1)

U+94B1
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-94B1

Programming

C
\u94B1
JavaScript
\u94B1
Java
\u94B1
Json
\u94B1
Python
\u94B1
Perl
\x{94B1}
PHP
\x{94B1}
Ruby
\u{94B1}
Rust
\u{94B1}
Go
\u94B1

Web

CSS
\0094B1
HtmlDecimal
钱
HtmlHexadecimal
钱
Url
%E9%92%B1

Code

MD5
d23513f09bc68d3136f8b1e395bcd1d9
Sha1
db4be6187513206218088a2558b912671d636aa9
Base64
6ZKx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u94B1';
console.log(char);  // Output: 钱

Java:

char c = '\u94B1';
System.out.println(c);  // Output: 钱

JSON:

{"text": "\u94B1"}  // Value: 钱

Python:

char = '\u94B1'
print(char)  # Output: 钱

Perl:

my $char = "\x{94B1}";
print $char;  # Output: 钱

PHP:

$char = "\x{94B1}";
echo $char;  // Output: 钱

Ruby:

char = "\u{94B1}"
puts char  # Output: 钱

Rust:

let c = '\u{94B1}';
println!("{}", c);  // Output: 钱

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0094B1";  /* Display: 钱 */
}

HTML Decimal:

<p>HTML decimal: &#38065;</p>  <!-- Display: 钱 -->

HTML Hexadecimal:

<p>HTML hex: &#x94B1;</p>  <!-- Display: 钱 -->

URL Encoding:

// 钱 URL encoding
https://unicodefinder.com/search.php?query=%E9%92%B1

Encodings

MD5:

d23513f09bc68d3136f8b1e395bcd1d9

SHA1:

db4be6187513206218088a2558b912671d636aa9

Base64:

6ZKx