Unicode Finder

"弑" U+5F11(CJK UNIFIED IDEOGRAPH-5F11)

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

Programming

C
\u5F11
JavaScript
\u5F11
Java
\u5F11
Json
\u5F11
Python
\u5F11
Perl
\x{5F11}
PHP
\x{5F11}
Ruby
\u{5F11}
Rust
\u{5F11}
Go
\u5F11

Web

CSS
\005F11
HtmlDecimal
弑
HtmlHexadecimal
弑
Url
%E5%BC%91

Code

MD5
84255cef77ef349cd38fa57929785032
Sha1
2375b86d7315cf7951cd18597b5d7c1270ed2cb0
Base64
5byR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5F11';
console.log(char);  // Output: 弑

Java:

char c = '\u5F11';
System.out.println(c);  // Output: 弑

JSON:

{"text": "\u5F11"}  // Value: 弑

Python:

char = '\u5F11'
print(char)  # Output: 弑

Perl:

my $char = "\x{5F11}";
print $char;  # Output: 弑

PHP:

$char = "\x{5F11}";
echo $char;  // Output: 弑

Ruby:

char = "\u{5F11}"
puts char  # Output: 弑

Rust:

let c = '\u{5F11}';
println!("{}", c);  // Output: 弑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005F11";  /* Display: 弑 */
}

HTML Decimal:

<p>HTML decimal: &#24337;</p>  <!-- Display: 弑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F11;</p>  <!-- Display: 弑 -->

URL Encoding:

// 弑 URL encoding
https://unicodefinder.com/search.php?query=%E5%BC%91

Encodings

MD5:

84255cef77ef349cd38fa57929785032

SHA1:

2375b86d7315cf7951cd18597b5d7c1270ed2cb0

Base64:

5byR