Unicode Finder

"鈲" U+9232(CJK UNIFIED IDEOGRAPH-9232)

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

Programming

C
\u9232
JavaScript
\u9232
Java
\u9232
Json
\u9232
Python
\u9232
Perl
\x{9232}
PHP
\x{9232}
Ruby
\u{9232}
Rust
\u{9232}
Go
\u9232

Web

CSS
\009232
HtmlDecimal
鈲
HtmlHexadecimal
鈲
Url
%E9%88%B2

Code

MD5
cb33ce4d7cdacd1e4593e1a94992912a
Sha1
48026bc1fb7391ef5978edc461719456f2735535
Base64
6Yiy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9232';
console.log(char);  // Output: 鈲

Java:

char c = '\u9232';
System.out.println(c);  // Output: 鈲

JSON:

{"text": "\u9232"}  // Value: 鈲

Python:

char = '\u9232'
print(char)  # Output: 鈲

Perl:

my $char = "\x{9232}";
print $char;  # Output: 鈲

PHP:

$char = "\x{9232}";
echo $char;  // Output: 鈲

Ruby:

char = "\u{9232}"
puts char  # Output: 鈲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009232";  /* Display: 鈲 */
}

HTML Decimal:

<p>HTML decimal: &#37426;</p>  <!-- Display: 鈲 -->

HTML Hexadecimal:

<p>HTML hex: &#x9232;</p>  <!-- Display: 鈲 -->

URL Encoding:

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

Encodings

MD5:

cb33ce4d7cdacd1e4593e1a94992912a

SHA1:

48026bc1fb7391ef5978edc461719456f2735535

Base64:

6Yiy