Unicode Finder

"鉁" U+9241(CJK UNIFIED IDEOGRAPH-9241)

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

Programming

C
\u9241
JavaScript
\u9241
Java
\u9241
Json
\u9241
Python
\u9241
Perl
\x{9241}
PHP
\x{9241}
Ruby
\u{9241}
Rust
\u{9241}
Go
\u9241

Web

CSS
\009241
HtmlDecimal
鉁
HtmlHexadecimal
鉁
Url
%E9%89%81

Code

MD5
cd5068207d4c72debf6e7710ff0db100
Sha1
fcc1545754b05df60c9979721e5696619152dc2b
Base64
6YmB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9241';
console.log(char);  // Output: 鉁

Java:

char c = '\u9241';
System.out.println(c);  // Output: 鉁

JSON:

{"text": "\u9241"}  // Value: 鉁

Python:

char = '\u9241'
print(char)  # Output: 鉁

Perl:

my $char = "\x{9241}";
print $char;  # Output: 鉁

PHP:

$char = "\x{9241}";
echo $char;  // Output: 鉁

Ruby:

char = "\u{9241}"
puts char  # Output: 鉁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009241";  /* Display: 鉁 */
}

HTML Decimal:

<p>HTML decimal: &#37441;</p>  <!-- Display: 鉁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9241;</p>  <!-- Display: 鉁 -->

URL Encoding:

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

Encodings

MD5:

cd5068207d4c72debf6e7710ff0db100

SHA1:

fcc1545754b05df60c9979721e5696619152dc2b

Base64:

6YmB