C:
char c = '\u6163';
printf("%c\n", c); // Output: 慣
JavaScript:
const char = '\u6163';
console.log(char); // Output: 慣
Java:
char c = '\u6163';
System.out.println(c); // Output: 慣
JSON:
{"text": "\u6163"} // Value: 慣
Python:
char = '\u6163'
print(char) # Output: 慣
Perl:
my $char = "\x{6163}";
print $char; # Output: 慣
PHP:
$char = "\x{6163}";
echo $char; // Output: 慣
Ruby:
char = "\u{6163}"
puts char # Output: 慣
Rust:
let c = '\u{6163}';
println!("{}", c); // Output: 慣
Go:
char := '\u6163'
fmt.Printf("%c\n", char) // Output: 慣
CSS:
/* CSS content property */
.element::before {
content: "\006163"; /* 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%A3
MD5:
25e1d841263b4134f7f11a4d5695d88f
SHA1:
f0bc7c4e6177808ab65f88db723b02f8bcdc25c2
Base64:
5oWj