Unicode Finder

"鉰" U+9270(CJK UNIFIED IDEOGRAPH-9270)

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

Programming

C
\u9270
JavaScript
\u9270
Java
\u9270
Json
\u9270
Python
\u9270
Perl
\x{9270}
PHP
\x{9270}
Ruby
\u{9270}
Rust
\u{9270}
Go
\u9270

Web

CSS
\009270
HtmlDecimal
鉰
HtmlHexadecimal
鉰
Url
%E9%89%B0

Code

MD5
55c6ff3ba1b88100dd774718f50a8e09
Sha1
0d1c4fd92b1ca9721fd5e39f1555e09329591160
Base64
6Ymw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9270';
console.log(char);  // Output: 鉰

Java:

char c = '\u9270';
System.out.println(c);  // Output: 鉰

JSON:

{"text": "\u9270"}  // Value: 鉰

Python:

char = '\u9270'
print(char)  # Output: 鉰

Perl:

my $char = "\x{9270}";
print $char;  # Output: 鉰

PHP:

$char = "\x{9270}";
echo $char;  // Output: 鉰

Ruby:

char = "\u{9270}"
puts char  # Output: 鉰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009270";  /* Display: 鉰 */
}

HTML Decimal:

<p>HTML decimal: &#37488;</p>  <!-- Display: 鉰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9270;</p>  <!-- Display: 鉰 -->

URL Encoding:

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

Encodings

MD5:

55c6ff3ba1b88100dd774718f50a8e09

SHA1:

0d1c4fd92b1ca9721fd5e39f1555e09329591160

Base64:

6Ymw