Unicode Finder

"錆" U+9306(CJK UNIFIED IDEOGRAPH-9306)

U+9306
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9306

Programming

C
\u9306
JavaScript
\u9306
Java
\u9306
Json
\u9306
Python
\u9306
Perl
\x{9306}
PHP
\x{9306}
Ruby
\u{9306}
Rust
\u{9306}
Go
\u9306

Web

CSS
\009306
HtmlDecimal
錆
HtmlHexadecimal
錆
Url
%E9%8C%86

Code

MD5
409ce04c4ec7b9ac345bd674c774cb59
Sha1
ab5ba91171c3a7a8f5770fbc35c4e0cacd279eed
Base64
6YyG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9306';
console.log(char);  // Output: 錆

Java:

char c = '\u9306';
System.out.println(c);  // Output: 錆

JSON:

{"text": "\u9306"}  // Value: 錆

Python:

char = '\u9306'
print(char)  # Output: 錆

Perl:

my $char = "\x{9306}";
print $char;  # Output: 錆

PHP:

$char = "\x{9306}";
echo $char;  // Output: 錆

Ruby:

char = "\u{9306}"
puts char  # Output: 錆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009306";  /* Display: 錆 */
}

HTML Decimal:

<p>HTML decimal: &#37638;</p>  <!-- Display: 錆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9306;</p>  <!-- Display: 錆 -->

URL Encoding:

// 錆 URL encoding
https://unicodefinder.com/search.php?query=%E9%8C%86

Encodings

MD5:

409ce04c4ec7b9ac345bd674c774cb59

SHA1:

ab5ba91171c3a7a8f5770fbc35c4e0cacd279eed

Base64:

6YyG