Unicode Finder

"鍕" U+9355(CJK UNIFIED IDEOGRAPH-9355)

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

Programming

C
\u9355
JavaScript
\u9355
Java
\u9355
Json
\u9355
Python
\u9355
Perl
\x{9355}
PHP
\x{9355}
Ruby
\u{9355}
Rust
\u{9355}
Go
\u9355

Web

CSS
\009355
HtmlDecimal
鍕
HtmlHexadecimal
鍕
Url
%E9%8D%95

Code

MD5
0ca93b9d10faedde8c06b7ebb7d694bd
Sha1
5961ec674d47647e3ecc05f8fa2d1b7af8bc7e8c
Base64
6Y2V

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9355';
console.log(char);  // Output: 鍕

Java:

char c = '\u9355';
System.out.println(c);  // Output: 鍕

JSON:

{"text": "\u9355"}  // Value: 鍕

Python:

char = '\u9355'
print(char)  # Output: 鍕

Perl:

my $char = "\x{9355}";
print $char;  # Output: 鍕

PHP:

$char = "\x{9355}";
echo $char;  // Output: 鍕

Ruby:

char = "\u{9355}"
puts char  # Output: 鍕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009355";  /* Display: 鍕 */
}

HTML Decimal:

<p>HTML decimal: &#37717;</p>  <!-- Display: 鍕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9355;</p>  <!-- Display: 鍕 -->

URL Encoding:

// 鍕 URL encoding
https://unicodefinder.com/search.php?query=%E9%8D%95

Encodings

MD5:

0ca93b9d10faedde8c06b7ebb7d694bd

SHA1:

5961ec674d47647e3ecc05f8fa2d1b7af8bc7e8c

Base64:

6Y2V