C:
char c = '\u6106';
printf("%c\n", c); // Output: 愆
JavaScript:
const char = '\u6106';
console.log(char); // Output: 愆
Java:
char c = '\u6106';
System.out.println(c); // Output: 愆
JSON:
{"text": "\u6106"} // Value: 愆
Python:
char = '\u6106'
print(char) # Output: 愆
Perl:
my $char = "\x{6106}";
print $char; # Output: 愆
PHP:
$char = "\x{6106}";
echo $char; // Output: 愆
Ruby:
char = "\u{6106}"
puts char # Output: 愆
Rust:
let c = '\u{6106}';
println!("{}", c); // Output: 愆
Go:
char := '\u6106'
fmt.Printf("%c\n", char) // Output: 愆
CSS:
/* CSS content property */
.element::before {
content: "\006106"; /* 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%84%86
MD5:
a2c67aa93126a1c5c13dff8934a0992d
SHA1:
c7de0ec48dee5df80ba338e9ad36edaa4a350e4e
Base64:
5oSG