Unicode Finder

"倆" U+5006(CJK UNIFIED IDEOGRAPH-5006)

U+5006
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5006

Programming

C
\u5006
JavaScript
\u5006
Java
\u5006
Json
\u5006
Python
\u5006
Perl
\x{5006}
PHP
\x{5006}
Ruby
\u{5006}
Rust
\u{5006}
Go
\u5006

Web

CSS
\005006
HtmlDecimal
倆
HtmlHexadecimal
倆
Url
%E5%80%86

Code

MD5
9f75a67d0678fc8380400de2efcd89d2
Sha1
1b7e81ab2049803265361ef858ef700ae166d889
Base64
5YCG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5006';
console.log(char);  // Output: 倆

Java:

char c = '\u5006';
System.out.println(c);  // Output: 倆

JSON:

{"text": "\u5006"}  // Value: 倆

Python:

char = '\u5006'
print(char)  # Output: 倆

Perl:

my $char = "\x{5006}";
print $char;  # Output: 倆

PHP:

$char = "\x{5006}";
echo $char;  // Output: 倆

Ruby:

char = "\u{5006}"
puts char  # Output: 倆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005006";  /* Display: 倆 */
}

HTML Decimal:

<p>HTML decimal: &#20486;</p>  <!-- Display: 倆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5006;</p>  <!-- Display: 倆 -->

URL Encoding:

// 倆 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%86

Encodings

MD5:

9f75a67d0678fc8380400de2efcd89d2

SHA1:

1b7e81ab2049803265361ef858ef700ae166d889

Base64:

5YCG