Unicode Finder

"鉐" U+9250(CJK UNIFIED IDEOGRAPH-9250)

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

Programming

C
\u9250
JavaScript
\u9250
Java
\u9250
Json
\u9250
Python
\u9250
Perl
\x{9250}
PHP
\x{9250}
Ruby
\u{9250}
Rust
\u{9250}
Go
\u9250

Web

CSS
\009250
HtmlDecimal
鉐
HtmlHexadecimal
鉐
Url
%E9%89%90

Code

MD5
edca153a7680be3b1eb1d9ed0406f0b1
Sha1
e63ec155d3ed617eafbc5c5cd278768daa759301
Base64
6YmQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9250';
console.log(char);  // Output: 鉐

Java:

char c = '\u9250';
System.out.println(c);  // Output: 鉐

JSON:

{"text": "\u9250"}  // Value: 鉐

Python:

char = '\u9250'
print(char)  # Output: 鉐

Perl:

my $char = "\x{9250}";
print $char;  # Output: 鉐

PHP:

$char = "\x{9250}";
echo $char;  // Output: 鉐

Ruby:

char = "\u{9250}"
puts char  # Output: 鉐

Rust:

let c = '\u{9250}';
println!("{}", c);  // Output: 鉐

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009250";  /* Display: 鉐 */
}

HTML Decimal:

<p>HTML decimal: &#37456;</p>  <!-- Display: 鉐 -->

HTML Hexadecimal:

<p>HTML hex: &#x9250;</p>  <!-- Display: 鉐 -->

URL Encoding:

// 鉐 URL encoding
https://unicodefinder.com/search.php?query=%E9%89%90

Encodings

MD5:

edca153a7680be3b1eb1d9ed0406f0b1

SHA1:

e63ec155d3ed617eafbc5c5cd278768daa759301

Base64:

6YmQ