Unicode Finder

"偁" U+5041(CJK UNIFIED IDEOGRAPH-5041)

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

Programming

C
\u5041
JavaScript
\u5041
Java
\u5041
Json
\u5041
Python
\u5041
Perl
\x{5041}
PHP
\x{5041}
Ruby
\u{5041}
Rust
\u{5041}
Go
\u5041

Web

CSS
\005041
HtmlDecimal
偁
HtmlHexadecimal
偁
Url
%E5%81%81

Code

MD5
b2146cbd878c0d49baaff787827f1821
Sha1
c09f81ad23b0881a0cb8be6190f06d9f9d95d11c
Base64
5YGB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5041';
console.log(char);  // Output: 偁

Java:

char c = '\u5041';
System.out.println(c);  // Output: 偁

JSON:

{"text": "\u5041"}  // Value: 偁

Python:

char = '\u5041'
print(char)  # Output: 偁

Perl:

my $char = "\x{5041}";
print $char;  # Output: 偁

PHP:

$char = "\x{5041}";
echo $char;  // Output: 偁

Ruby:

char = "\u{5041}"
puts char  # Output: 偁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005041";  /* Display: 偁 */
}

HTML Decimal:

<p>HTML decimal: &#20545;</p>  <!-- Display: 偁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5041;</p>  <!-- Display: 偁 -->

URL Encoding:

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

Encodings

MD5:

b2146cbd878c0d49baaff787827f1821

SHA1:

c09f81ad23b0881a0cb8be6190f06d9f9d95d11c

Base64:

5YGB