Unicode Finder

"啥" U+5565(CJK UNIFIED IDEOGRAPH-5565)

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

Programming

C
\u5565
JavaScript
\u5565
Java
\u5565
Json
\u5565
Python
\u5565
Perl
\x{5565}
PHP
\x{5565}
Ruby
\u{5565}
Rust
\u{5565}
Go
\u5565

Web

CSS
\005565
HtmlDecimal
啥
HtmlHexadecimal
啥
Url
%E5%95%A5

Code

MD5
f0eba6539e9740e013596b625456fbf6
Sha1
202909d84d004af6e62928abb0f43d6e7e86097f
Base64
5ZWl

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5565';
console.log(char);  // Output: 啥

Java:

char c = '\u5565';
System.out.println(c);  // Output: 啥

JSON:

{"text": "\u5565"}  // Value: 啥

Python:

char = '\u5565'
print(char)  # Output: 啥

Perl:

my $char = "\x{5565}";
print $char;  # Output: 啥

PHP:

$char = "\x{5565}";
echo $char;  // Output: 啥

Ruby:

char = "\u{5565}"
puts char  # Output: 啥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005565";  /* Display: 啥 */
}

HTML Decimal:

<p>HTML decimal: &#21861;</p>  <!-- Display: 啥 -->

HTML Hexadecimal:

<p>HTML hex: &#x5565;</p>  <!-- Display: 啥 -->

URL Encoding:

// 啥 URL encoding
https://unicodefinder.com/search.php?query=%E5%95%A5

Encodings

MD5:

f0eba6539e9740e013596b625456fbf6

SHA1:

202909d84d004af6e62928abb0f43d6e7e86097f

Base64:

5ZWl