Unicode Finder

"偨" U+5068(CJK UNIFIED IDEOGRAPH-5068)

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

Programming

C
\u5068
JavaScript
\u5068
Java
\u5068
Json
\u5068
Python
\u5068
Perl
\x{5068}
PHP
\x{5068}
Ruby
\u{5068}
Rust
\u{5068}
Go
\u5068

Web

CSS
\005068
HtmlDecimal
偨
HtmlHexadecimal
偨
Url
%E5%81%A8

Code

MD5
5530a531792cd7ffc29a2f6b3de0e882
Sha1
19995499f157ede2a8a3d071960d44a9b0fe2be7
Base64
5YGo

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5068';
console.log(char);  // Output: 偨

Java:

char c = '\u5068';
System.out.println(c);  // Output: 偨

JSON:

{"text": "\u5068"}  // Value: 偨

Python:

char = '\u5068'
print(char)  # Output: 偨

Perl:

my $char = "\x{5068}";
print $char;  # Output: 偨

PHP:

$char = "\x{5068}";
echo $char;  // Output: 偨

Ruby:

char = "\u{5068}"
puts char  # Output: 偨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005068";  /* Display: 偨 */
}

HTML Decimal:

<p>HTML decimal: &#20584;</p>  <!-- Display: 偨 -->

HTML Hexadecimal:

<p>HTML hex: &#x5068;</p>  <!-- Display: 偨 -->

URL Encoding:

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

Encodings

MD5:

5530a531792cd7ffc29a2f6b3de0e882

SHA1:

19995499f157ede2a8a3d071960d44a9b0fe2be7

Base64:

5YGo