Unicode Finder

"鉈" U+9248(CJK UNIFIED IDEOGRAPH-9248)

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

Programming

C
\u9248
JavaScript
\u9248
Java
\u9248
Json
\u9248
Python
\u9248
Perl
\x{9248}
PHP
\x{9248}
Ruby
\u{9248}
Rust
\u{9248}
Go
\u9248

Web

CSS
\009248
HtmlDecimal
鉈
HtmlHexadecimal
鉈
Url
%E9%89%88

Code

MD5
35486870591cd296ea235fe595327ac3
Sha1
cf094dc7c1434c2d135196257461d16ec045cae2
Base64
6YmI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9248';
console.log(char);  // Output: 鉈

Java:

char c = '\u9248';
System.out.println(c);  // Output: 鉈

JSON:

{"text": "\u9248"}  // Value: 鉈

Python:

char = '\u9248'
print(char)  # Output: 鉈

Perl:

my $char = "\x{9248}";
print $char;  # Output: 鉈

PHP:

$char = "\x{9248}";
echo $char;  // Output: 鉈

Ruby:

char = "\u{9248}"
puts char  # Output: 鉈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009248";  /* Display: 鉈 */
}

HTML Decimal:

<p>HTML decimal: &#37448;</p>  <!-- Display: 鉈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9248;</p>  <!-- Display: 鉈 -->

URL Encoding:

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

Encodings

MD5:

35486870591cd296ea235fe595327ac3

SHA1:

cf094dc7c1434c2d135196257461d16ec045cae2

Base64:

6YmI