Unicode Finder

"鉬" U+926C(CJK UNIFIED IDEOGRAPH-926C)

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

Programming

C
\u926C
JavaScript
\u926C
Java
\u926C
Json
\u926C
Python
\u926C
Perl
\x{926C}
PHP
\x{926C}
Ruby
\u{926C}
Rust
\u{926C}
Go
\u926C

Web

CSS
\00926C
HtmlDecimal
鉬
HtmlHexadecimal
鉬
Url
%E9%89%AC

Code

MD5
dc8e5938e8f76b9afb5a6360cbc56135
Sha1
bf25635a06294780d7be269f8b08ff3aa5cb1982
Base64
6Yms

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u926C';
console.log(char);  // Output: 鉬

Java:

char c = '\u926C';
System.out.println(c);  // Output: 鉬

JSON:

{"text": "\u926C"}  // Value: 鉬

Python:

char = '\u926C'
print(char)  # Output: 鉬

Perl:

my $char = "\x{926C}";
print $char;  # Output: 鉬

PHP:

$char = "\x{926C}";
echo $char;  // Output: 鉬

Ruby:

char = "\u{926C}"
puts char  # Output: 鉬

Rust:

let c = '\u{926C}';
println!("{}", c);  // Output: 鉬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00926C";  /* Display: 鉬 */
}

HTML Decimal:

<p>HTML decimal: &#37484;</p>  <!-- Display: 鉬 -->

HTML Hexadecimal:

<p>HTML hex: &#x926C;</p>  <!-- Display: 鉬 -->

URL Encoding:

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

Encodings

MD5:

dc8e5938e8f76b9afb5a6360cbc56135

SHA1:

bf25635a06294780d7be269f8b08ff3aa5cb1982

Base64:

6Yms