Unicode Finder

"呅" U+5445(CJK UNIFIED IDEOGRAPH-5445)

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

Programming

C
\u5445
JavaScript
\u5445
Java
\u5445
Json
\u5445
Python
\u5445
Perl
\x{5445}
PHP
\x{5445}
Ruby
\u{5445}
Rust
\u{5445}
Go
\u5445

Web

CSS
\005445
HtmlDecimal
呅
HtmlHexadecimal
呅
Url
%E5%91%85

Code

MD5
de8d35ae68d762d4e496820174529959
Sha1
fef51e77187b436d46323e29a5f36ae5fc45126e
Base64
5ZGF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5445';
console.log(char);  // Output: 呅

Java:

char c = '\u5445';
System.out.println(c);  // Output: 呅

JSON:

{"text": "\u5445"}  // Value: 呅

Python:

char = '\u5445'
print(char)  # Output: 呅

Perl:

my $char = "\x{5445}";
print $char;  # Output: 呅

PHP:

$char = "\x{5445}";
echo $char;  // Output: 呅

Ruby:

char = "\u{5445}"
puts char  # Output: 呅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005445";  /* Display: 呅 */
}

HTML Decimal:

<p>HTML decimal: &#21573;</p>  <!-- Display: 呅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5445;</p>  <!-- Display: 呅 -->

URL Encoding:

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

Encodings

MD5:

de8d35ae68d762d4e496820174529959

SHA1:

fef51e77187b436d46323e29a5f36ae5fc45126e

Base64:

5ZGF