Unicode Finder

"镩" U+9569(CJK UNIFIED IDEOGRAPH-9569)

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

Programming

C
\u9569
JavaScript
\u9569
Java
\u9569
Json
\u9569
Python
\u9569
Perl
\x{9569}
PHP
\x{9569}
Ruby
\u{9569}
Rust
\u{9569}
Go
\u9569

Web

CSS
\009569
HtmlDecimal
镩
HtmlHexadecimal
镩
Url
%E9%95%A9

Code

MD5
d76f8197d91ab725705a2016f5e9e61b
Sha1
75796d12dfc9c27af19e6845dad498db00c1b16a
Base64
6ZWp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9569';
console.log(char);  // Output: 镩

Java:

char c = '\u9569';
System.out.println(c);  // Output: 镩

JSON:

{"text": "\u9569"}  // Value: 镩

Python:

char = '\u9569'
print(char)  # Output: 镩

Perl:

my $char = "\x{9569}";
print $char;  # Output: 镩

PHP:

$char = "\x{9569}";
echo $char;  // Output: 镩

Ruby:

char = "\u{9569}"
puts char  # Output: 镩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009569";  /* Display: 镩 */
}

HTML Decimal:

<p>HTML decimal: &#38249;</p>  <!-- Display: 镩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9569;</p>  <!-- Display: 镩 -->

URL Encoding:

// 镩 URL encoding
https://unicodefinder.com/search.php?query=%E9%95%A9

Encodings

MD5:

d76f8197d91ab725705a2016f5e9e61b

SHA1:

75796d12dfc9c27af19e6845dad498db00c1b16a

Base64:

6ZWp