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: 兩
CSS:
/* CSS content property */
.element::before {
content: "\005169"; /* Display: 兩 */
}
HTML Decimal:
<p>HTML decimal: 兩</p> <!-- Display: 兩 -->
HTML Hexadecimal:
<p>HTML hex: 兩</p> <!-- Display: 兩 -->
URL Encoding:
// 兩 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%A9
MD5:
d612f1edb9de571c5743da231a22ee82
SHA1:
1dc8902f2cea06c25bdf442b14ed2387b1669b0b
Base64:
5YWp