Unicode Finder

"鈱" U+9231(CJK UNIFIED IDEOGRAPH-9231)

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

Programming

C
\u9231
JavaScript
\u9231
Java
\u9231
Json
\u9231
Python
\u9231
Perl
\x{9231}
PHP
\x{9231}
Ruby
\u{9231}
Rust
\u{9231}
Go
\u9231

Web

CSS
\009231
HtmlDecimal
鈱
HtmlHexadecimal
鈱
Url
%E9%88%B1

Code

MD5
493339f59bc799b8a5903d7ecf47a24d
Sha1
411b60e94e9820958677c9cba5daf9b1ce02ea8a
Base64
6Yix

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9231';
console.log(char);  // Output: 鈱

Java:

char c = '\u9231';
System.out.println(c);  // Output: 鈱

JSON:

{"text": "\u9231"}  // Value: 鈱

Python:

char = '\u9231'
print(char)  # Output: 鈱

Perl:

my $char = "\x{9231}";
print $char;  # Output: 鈱

PHP:

$char = "\x{9231}";
echo $char;  // Output: 鈱

Ruby:

char = "\u{9231}"
puts char  # Output: 鈱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009231";  /* Display: 鈱 */
}

HTML Decimal:

<p>HTML decimal: &#37425;</p>  <!-- Display: 鈱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9231;</p>  <!-- Display: 鈱 -->

URL Encoding:

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

Encodings

MD5:

493339f59bc799b8a5903d7ecf47a24d

SHA1:

411b60e94e9820958677c9cba5daf9b1ce02ea8a

Base64:

6Yix