Unicode Finder

"赏" U+8D4F(CJK UNIFIED IDEOGRAPH-8D4F)

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

Programming

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

Web

CSS
\008D4F
HtmlDecimal
赏
HtmlHexadecimal
赏
Url
%E8%B5%8F

Code

MD5
36d698d44133afdf0bf7881a4037a00f
Sha1
e6c2c31357df6a442147905f3fe2eb8e565e8a8d
Base64
6LWP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8D4F';
console.log(char);  // Output: 赏

Java:

char c = '\u8D4F';
System.out.println(c);  // Output: 赏

JSON:

{"text": "\u8D4F"}  // Value: 赏

Python:

char = '\u8D4F'
print(char)  # Output: 赏

Perl:

my $char = "\x{8D4F}";
print $char;  # Output: 赏

PHP:

$char = "\x{8D4F}";
echo $char;  // Output: 赏

Ruby:

char = "\u{8D4F}"
puts char  # Output: 赏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36175;</p>  <!-- Display: 赏 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D4F;</p>  <!-- Display: 赏 -->

URL Encoding:

// 赏 URL encoding
https://unicodefinder.com/search.php?query=%E8%B5%8F

Encodings

MD5:

36d698d44133afdf0bf7881a4037a00f

SHA1:

e6c2c31357df6a442147905f3fe2eb8e565e8a8d

Base64:

6LWP