Unicode Finder

"兩" U+5169(CJK UNIFIED IDEOGRAPH-5169)

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

Programming

C
\u5169
JavaScript
\u5169
Java
\u5169
Json
\u5169
Python
\u5169
Perl
\x{5169}
PHP
\x{5169}
Ruby
\u{5169}
Rust
\u{5169}
Go
\u5169

Web

CSS
\005169
HtmlDecimal
兩
HtmlHexadecimal
兩
Url
%E5%85%A9

Code

MD5
d612f1edb9de571c5743da231a22ee82
Sha1
1dc8902f2cea06c25bdf442b14ed2387b1669b0b
Base64
5YWp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5169';
console.log(char);  // Output: 兩

Java:

char c = '\u5169';
System.out.println(c);  // Output: 兩

JSON:

{"text": "\u5169"}  // Value: 兩

Python:

char = '\u5169'
print(char)  # Output: 兩

Perl:

my $char = "\x{5169}";
print $char;  # Output: 兩

PHP:

$char = "\x{5169}";
echo $char;  // Output: 兩

Ruby:

char = "\u{5169}"
puts char  # Output: 兩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005169";  /* Display: 兩 */
}

HTML Decimal:

<p>HTML decimal: &#20841;</p>  <!-- Display: 兩 -->

HTML Hexadecimal:

<p>HTML hex: &#x5169;</p>  <!-- Display: 兩 -->

URL Encoding:

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

Encodings

MD5:

d612f1edb9de571c5743da231a22ee82

SHA1:

1dc8902f2cea06c25bdf442b14ed2387b1669b0b

Base64:

5YWp