C:
char c = '\u6103';
printf("%c\n", c); // Output: 愃
JavaScript:
const char = '\u6103';
console.log(char); // Output: 愃
Java:
char c = '\u6103';
System.out.println(c); // Output: 愃
JSON:
{"text": "\u6103"} // Value: 愃
Python:
char = '\u6103'
print(char) # Output: 愃
Perl:
my $char = "\x{6103}";
print $char; # Output: 愃
PHP:
$char = "\x{6103}";
echo $char; // Output: 愃
Ruby:
char = "\u{6103}"
puts char # Output: 愃
Rust:
let c = '\u{6103}';
println!("{}", c); // Output: 愃
Go:
char := '\u6103'
fmt.Printf("%c\n", char) // Output: 愃
CSS:
/* CSS content property */
.element::before {
content: "\006103"; /* 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%83
MD5:
af9435d8c289ff2567d18001f858ab4e
SHA1:
82ae1cd6329377a3f048d64ed372386a65ec100f
Base64:
5oSD