Unicode Finder

"偲" U+5072(CJK UNIFIED IDEOGRAPH-5072)

U+5072
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5072

Programming

C
\u5072
JavaScript
\u5072
Java
\u5072
Json
\u5072
Python
\u5072
Perl
\x{5072}
PHP
\x{5072}
Ruby
\u{5072}
Rust
\u{5072}
Go
\u5072

Web

CSS
\005072
HtmlDecimal
偲
HtmlHexadecimal
偲
Url
%E5%81%B2

Code

MD5
7b667286d82369cbd03b3c1f63d34166
Sha1
9ad4d62a34e6dbb50fe049e333c9024934aa6258
Base64
5YGy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5072';
console.log(char);  // Output: 偲

Java:

char c = '\u5072';
System.out.println(c);  // Output: 偲

JSON:

{"text": "\u5072"}  // Value: 偲

Python:

char = '\u5072'
print(char)  # Output: 偲

Perl:

my $char = "\x{5072}";
print $char;  # Output: 偲

PHP:

$char = "\x{5072}";
echo $char;  // Output: 偲

Ruby:

char = "\u{5072}"
puts char  # Output: 偲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005072";  /* Display: 偲 */
}

HTML Decimal:

<p>HTML decimal: &#20594;</p>  <!-- Display: 偲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5072;</p>  <!-- Display: 偲 -->

URL Encoding:

// 偲 URL encoding
https://unicodefinder.com/search.php?query=%E5%81%B2

Encodings

MD5:

7b667286d82369cbd03b3c1f63d34166

SHA1:

9ad4d62a34e6dbb50fe049e333c9024934aa6258

Base64:

5YGy