Unicode Finder

"鉩" U+9269(CJK UNIFIED IDEOGRAPH-9269)

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

Programming

C
\u9269
JavaScript
\u9269
Java
\u9269
Json
\u9269
Python
\u9269
Perl
\x{9269}
PHP
\x{9269}
Ruby
\u{9269}
Rust
\u{9269}
Go
\u9269

Web

CSS
\009269
HtmlDecimal
鉩
HtmlHexadecimal
鉩
Url
%E9%89%A9

Code

MD5
cebaf3721115fb06e2dbf0e3edc249cf
Sha1
c3686eb2f1e3a8da836e8f919484f8b777e7e3ca
Base64
6Ymp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9269';
console.log(char);  // Output: 鉩

Java:

char c = '\u9269';
System.out.println(c);  // Output: 鉩

JSON:

{"text": "\u9269"}  // Value: 鉩

Python:

char = '\u9269'
print(char)  # Output: 鉩

Perl:

my $char = "\x{9269}";
print $char;  # Output: 鉩

PHP:

$char = "\x{9269}";
echo $char;  // Output: 鉩

Ruby:

char = "\u{9269}"
puts char  # Output: 鉩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009269";  /* Display: 鉩 */
}

HTML Decimal:

<p>HTML decimal: &#37481;</p>  <!-- Display: 鉩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9269;</p>  <!-- Display: 鉩 -->

URL Encoding:

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

Encodings

MD5:

cebaf3721115fb06e2dbf0e3edc249cf

SHA1:

c3686eb2f1e3a8da836e8f919484f8b777e7e3ca

Base64:

6Ymp