Unicode Finder

"鉭" U+926D(CJK UNIFIED IDEOGRAPH-926D)

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

Programming

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

Web

CSS
\00926D
HtmlDecimal
鉭
HtmlHexadecimal
鉭
Url
%E9%89%AD

Code

MD5
a4b43d8586dbe9cbbf5ae9079e2b58f5
Sha1
ba2eb69d94c6f97fb3d6c7bc7888f71cc1948e0f
Base64
6Ymt

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u926D';
console.log(char);  // Output: 鉭

Java:

char c = '\u926D';
System.out.println(c);  // Output: 鉭

JSON:

{"text": "\u926D"}  // Value: 鉭

Python:

char = '\u926D'
print(char)  # Output: 鉭

Perl:

my $char = "\x{926D}";
print $char;  # Output: 鉭

PHP:

$char = "\x{926D}";
echo $char;  // Output: 鉭

Ruby:

char = "\u{926D}"
puts char  # Output: 鉭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#37485;</p>  <!-- Display: 鉭 -->

HTML Hexadecimal:

<p>HTML hex: &#x926D;</p>  <!-- Display: 鉭 -->

URL Encoding:

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

Encodings

MD5:

a4b43d8586dbe9cbbf5ae9079e2b58f5

SHA1:

ba2eb69d94c6f97fb3d6c7bc7888f71cc1948e0f

Base64:

6Ymt