Unicode Finder

"伤" U+4F24(CJK UNIFIED IDEOGRAPH-4F24)

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

Programming

C
\u4F24
JavaScript
\u4F24
Java
\u4F24
Json
\u4F24
Python
\u4F24
Perl
\x{4F24}
PHP
\x{4F24}
Ruby
\u{4F24}
Rust
\u{4F24}
Go
\u4F24

Web

CSS
\004F24
HtmlDecimal
伤
HtmlHexadecimal
伤
Url
%E4%BC%A4

Code

MD5
08d7e824629d9ae6fe1d9f1661fcf175
Sha1
19a8803c06ad38a7ec3a799275a08f7d3d37d24f
Base64
5Lyk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F24';
console.log(char);  // Output: 伤

Java:

char c = '\u4F24';
System.out.println(c);  // Output: 伤

JSON:

{"text": "\u4F24"}  // Value: 伤

Python:

char = '\u4F24'
print(char)  # Output: 伤

Perl:

my $char = "\x{4F24}";
print $char;  # Output: 伤

PHP:

$char = "\x{4F24}";
echo $char;  // Output: 伤

Ruby:

char = "\u{4F24}"
puts char  # Output: 伤

Rust:

let c = '\u{4F24}';
println!("{}", c);  // Output: 伤

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004F24";  /* Display: 伤 */
}

HTML Decimal:

<p>HTML decimal: &#20260;</p>  <!-- Display: 伤 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F24;</p>  <!-- Display: 伤 -->

URL Encoding:

// 伤 URL encoding
https://unicodefinder.com/search.php?query=%E4%BC%A4

Encodings

MD5:

08d7e824629d9ae6fe1d9f1661fcf175

SHA1:

19a8803c06ad38a7ec3a799275a08f7d3d37d24f

Base64:

5Lyk