Unicode Finder

"偣" U+5063(CJK UNIFIED IDEOGRAPH-5063)

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

Programming

C
\u5063
JavaScript
\u5063
Java
\u5063
Json
\u5063
Python
\u5063
Perl
\x{5063}
PHP
\x{5063}
Ruby
\u{5063}
Rust
\u{5063}
Go
\u5063

Web

CSS
\005063
HtmlDecimal
偣
HtmlHexadecimal
偣
Url
%E5%81%A3

Code

MD5
5b1605a0e9d16c4adc2a0be797c27659
Sha1
0507c9110c8c1a5d716dfccf25a8bff7ade9cea4
Base64
5YGj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5063';
console.log(char);  // Output: 偣

Java:

char c = '\u5063';
System.out.println(c);  // Output: 偣

JSON:

{"text": "\u5063"}  // Value: 偣

Python:

char = '\u5063'
print(char)  # Output: 偣

Perl:

my $char = "\x{5063}";
print $char;  # Output: 偣

PHP:

$char = "\x{5063}";
echo $char;  // Output: 偣

Ruby:

char = "\u{5063}"
puts char  # Output: 偣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005063";  /* Display: 偣 */
}

HTML Decimal:

<p>HTML decimal: &#20579;</p>  <!-- Display: 偣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5063;</p>  <!-- Display: 偣 -->

URL Encoding:

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

Encodings

MD5:

5b1605a0e9d16c4adc2a0be797c27659

SHA1:

0507c9110c8c1a5d716dfccf25a8bff7ade9cea4

Base64:

5YGj