C:
char c = '\u6141';
printf("%c\n", c); // Output: 慁
JavaScript:
const char = '\u6141';
console.log(char); // Output: 慁
Java:
char c = '\u6141';
System.out.println(c); // Output: 慁
JSON:
{"text": "\u6141"} // Value: 慁
Python:
char = '\u6141'
print(char) # Output: 慁
Perl:
my $char = "\x{6141}";
print $char; # Output: 慁
PHP:
$char = "\x{6141}";
echo $char; // Output: 慁
Ruby:
char = "\u{6141}"
puts char # Output: 慁
Rust:
let c = '\u{6141}';
println!("{}", c); // Output: 慁
Go:
char := '\u6141'
fmt.Printf("%c\n", char) // Output: 慁
CSS:
/* CSS content property */
.element::before {
content: "\006141"; /* 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%81
MD5:
7cf8f9e9e2e3a445c36d8f5e5f112696
SHA1:
75a0f4f45a1d9d0b02702a79c638ae4db1763f4e
Base64:
5oWB