C:
char c = '\u5161';
printf("%c\n", c); // Output: 兡
JavaScript:
const char = '\u5161';
console.log(char); // Output: 兡
Java:
char c = '\u5161';
System.out.println(c); // Output: 兡
JSON:
{"text": "\u5161"} // Value: 兡
Python:
char = '\u5161'
print(char) # Output: 兡
Perl:
my $char = "\x{5161}";
print $char; # Output: 兡
PHP:
$char = "\x{5161}";
echo $char; // Output: 兡
Ruby:
char = "\u{5161}"
puts char # Output: 兡
Rust:
let c = '\u{5161}';
println!("{}", c); // Output: 兡
Go:
char := '\u5161'
fmt.Printf("%c\n", char) // Output: 兡
CSS:
/* CSS content property */
.element::before {
content: "\005161"; /* 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%A1
MD5:
421759886a881d0c85f5f1c478ddc8ae
SHA1:
fb610dd68030b542327c7d01bd85a22359af77ca
Base64:
5YWh