Unicode Finder

"锲" U+9532(CJK UNIFIED IDEOGRAPH-9532)

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

Programming

C
\u9532
JavaScript
\u9532
Java
\u9532
Json
\u9532
Python
\u9532
Perl
\x{9532}
PHP
\x{9532}
Ruby
\u{9532}
Rust
\u{9532}
Go
\u9532

Web

CSS
\009532
HtmlDecimal
锲
HtmlHexadecimal
锲
Url
%E9%94%B2

Code

MD5
6c7d0a5fd123a472895423a73ea1d419
Sha1
6614446398dd76d79064c40a222571924a7d5fc0
Base64
6ZSy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9532';
console.log(char);  // Output: 锲

Java:

char c = '\u9532';
System.out.println(c);  // Output: 锲

JSON:

{"text": "\u9532"}  // Value: 锲

Python:

char = '\u9532'
print(char)  # Output: 锲

Perl:

my $char = "\x{9532}";
print $char;  # Output: 锲

PHP:

$char = "\x{9532}";
echo $char;  // Output: 锲

Ruby:

char = "\u{9532}"
puts char  # Output: 锲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009532";  /* Display: 锲 */
}

HTML Decimal:

<p>HTML decimal: &#38194;</p>  <!-- Display: 锲 -->

HTML Hexadecimal:

<p>HTML hex: &#x9532;</p>  <!-- Display: 锲 -->

URL Encoding:

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

Encodings

MD5:

6c7d0a5fd123a472895423a73ea1d419

SHA1:

6614446398dd76d79064c40a222571924a7d5fc0

Base64:

6ZSy