Unicode Finder

"资" U+8D44(CJK UNIFIED IDEOGRAPH-8D44)

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

Programming

C
\u8D44
JavaScript
\u8D44
Java
\u8D44
Json
\u8D44
Python
\u8D44
Perl
\x{8D44}
PHP
\x{8D44}
Ruby
\u{8D44}
Rust
\u{8D44}
Go
\u8D44

Web

CSS
\008D44
HtmlDecimal
资
HtmlHexadecimal
资
Url
%E8%B5%84

Code

MD5
a6bb57d7ec78ae975390150cd7b01f13
Sha1
0c41167aa25527aff476cf7c3d75863cdf3f5972
Base64
6LWE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8D44';
console.log(char);  // Output: 资

Java:

char c = '\u8D44';
System.out.println(c);  // Output: 资

JSON:

{"text": "\u8D44"}  // Value: 资

Python:

char = '\u8D44'
print(char)  # Output: 资

Perl:

my $char = "\x{8D44}";
print $char;  # Output: 资

PHP:

$char = "\x{8D44}";
echo $char;  // Output: 资

Ruby:

char = "\u{8D44}"
puts char  # Output: 资

Rust:

let c = '\u{8D44}';
println!("{}", c);  // Output: 资

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008D44";  /* Display: 资 */
}

HTML Decimal:

<p>HTML decimal: &#36164;</p>  <!-- Display: 资 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D44;</p>  <!-- Display: 资 -->

URL Encoding:

// 资 URL encoding
https://unicodefinder.com/search.php?query=%E8%B5%84

Encodings

MD5:

a6bb57d7ec78ae975390150cd7b01f13

SHA1:

0c41167aa25527aff476cf7c3d75863cdf3f5972

Base64:

6LWE