Unicode Finder

"兠" U+5160(CJK UNIFIED IDEOGRAPH-5160)

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

Programming

C
\u5160
JavaScript
\u5160
Java
\u5160
Json
\u5160
Python
\u5160
Perl
\x{5160}
PHP
\x{5160}
Ruby
\u{5160}
Rust
\u{5160}
Go
\u5160

Web

CSS
\005160
HtmlDecimal
兠
HtmlHexadecimal
兠
Url
%E5%85%A0

Code

MD5
a293628af89228607945eb02b9315e6d
Sha1
fa4babe2fc5c7fb1de354f067b043e1e7d89fcd8
Base64
5YWg

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5160';
console.log(char);  // Output: 兠

Java:

char c = '\u5160';
System.out.println(c);  // Output: 兠

JSON:

{"text": "\u5160"}  // Value: 兠

Python:

char = '\u5160'
print(char)  # Output: 兠

Perl:

my $char = "\x{5160}";
print $char;  # Output: 兠

PHP:

$char = "\x{5160}";
echo $char;  // Output: 兠

Ruby:

char = "\u{5160}"
puts char  # Output: 兠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005160";  /* Display: 兠 */
}

HTML Decimal:

<p>HTML decimal: &#20832;</p>  <!-- Display: 兠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5160;</p>  <!-- Display: 兠 -->

URL Encoding:

// 兠 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%A0

Encodings

MD5:

a293628af89228607945eb02b9315e6d

SHA1:

fa4babe2fc5c7fb1de354f067b043e1e7d89fcd8

Base64:

5YWg