C:
char c = '\u6161';
printf("%c\n", c); // Output: 慡
JavaScript:
const char = '\u6161';
console.log(char); // Output: 慡
Java:
char c = '\u6161';
System.out.println(c); // Output: 慡
JSON:
{"text": "\u6161"} // Value: 慡
Python:
char = '\u6161'
print(char) # Output: 慡
Perl:
my $char = "\x{6161}";
print $char; # Output: 慡
PHP:
$char = "\x{6161}";
echo $char; // Output: 慡
Ruby:
char = "\u{6161}"
puts char # Output: 慡
Rust:
let c = '\u{6161}';
println!("{}", c); // Output: 慡
Go:
char := '\u6161'
fmt.Printf("%c\n", char) // Output: 慡
CSS:
/* CSS content property */
.element::before {
content: "\006161"; /* 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=%E6%85%A1
MD5:
42e70b8468c2a60b82ebbfc217a05b34
SHA1:
1e3b8f75582ab716883b139a127fcba1dce69763
Base64:
5oWh