C:
char c = '\u6105';
printf("%c\n", c); // Output: 愅
JavaScript:
const char = '\u6105';
console.log(char); // Output: 愅
Java:
char c = '\u6105';
System.out.println(c); // Output: 愅
JSON:
{"text": "\u6105"} // Value: 愅
Python:
char = '\u6105'
print(char) # Output: 愅
Perl:
my $char = "\x{6105}";
print $char; # Output: 愅
PHP:
$char = "\x{6105}";
echo $char; // Output: 愅
Ruby:
char = "\u{6105}"
puts char # Output: 愅
Rust:
let c = '\u{6105}';
println!("{}", c); // Output: 愅
Go:
char := '\u6105'
fmt.Printf("%c\n", char) // Output: 愅
CSS:
/* CSS content property */
.element::before {
content: "\006105"; /* 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%85
MD5:
631913861d06be298cd2054f68f4409c
SHA1:
d8d01e905bd82f4e6fc8e58f52ae3be0928e7a36
Base64:
5oSF