Unicode Finder

"偧" U+5067(CJK UNIFIED IDEOGRAPH-5067)

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

Programming

C
\u5067
JavaScript
\u5067
Java
\u5067
Json
\u5067
Python
\u5067
Perl
\x{5067}
PHP
\x{5067}
Ruby
\u{5067}
Rust
\u{5067}
Go
\u5067

Web

CSS
\005067
HtmlDecimal
偧
HtmlHexadecimal
偧
Url
%E5%81%A7

Code

MD5
d515844286b8f1b7314dd3d234c0e3ac
Sha1
217888e38a1614977e54bb279fe7a9fcd44d21c8
Base64
5YGn

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5067';
console.log(char);  // Output: 偧

Java:

char c = '\u5067';
System.out.println(c);  // Output: 偧

JSON:

{"text": "\u5067"}  // Value: 偧

Python:

char = '\u5067'
print(char)  # Output: 偧

Perl:

my $char = "\x{5067}";
print $char;  # Output: 偧

PHP:

$char = "\x{5067}";
echo $char;  // Output: 偧

Ruby:

char = "\u{5067}"
puts char  # Output: 偧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005067";  /* Display: 偧 */
}

HTML Decimal:

<p>HTML decimal: &#20583;</p>  <!-- Display: 偧 -->

HTML Hexadecimal:

<p>HTML hex: &#x5067;</p>  <!-- Display: 偧 -->

URL Encoding:

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

Encodings

MD5:

d515844286b8f1b7314dd3d234c0e3ac

SHA1:

217888e38a1614977e54bb279fe7a9fcd44d21c8

Base64:

5YGn