Unicode Finder

"锈" U+9508(CJK UNIFIED IDEOGRAPH-9508)

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

Programming

C
\u9508
JavaScript
\u9508
Java
\u9508
Json
\u9508
Python
\u9508
Perl
\x{9508}
PHP
\x{9508}
Ruby
\u{9508}
Rust
\u{9508}
Go
\u9508

Web

CSS
\009508
HtmlDecimal
锈
HtmlHexadecimal
锈
Url
%E9%94%88

Code

MD5
d557dba2e42372f3793a5cd84d0e4374
Sha1
09b3f9e7e8cab54ce192db37d0231046c46fc9ca
Base64
6ZSI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9508';
console.log(char);  // Output: 锈

Java:

char c = '\u9508';
System.out.println(c);  // Output: 锈

JSON:

{"text": "\u9508"}  // Value: 锈

Python:

char = '\u9508'
print(char)  # Output: 锈

Perl:

my $char = "\x{9508}";
print $char;  # Output: 锈

PHP:

$char = "\x{9508}";
echo $char;  // Output: 锈

Ruby:

char = "\u{9508}"
puts char  # Output: 锈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009508";  /* Display: 锈 */
}

HTML Decimal:

<p>HTML decimal: &#38152;</p>  <!-- Display: 锈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9508;</p>  <!-- Display: 锈 -->

URL Encoding:

// 锈 URL encoding
https://unicodefinder.com/search.php?query=%E9%94%88

Encodings

MD5:

d557dba2e42372f3793a5cd84d0e4374

SHA1:

09b3f9e7e8cab54ce192db37d0231046c46fc9ca

Base64:

6ZSI