C:
char c = '\u6020';
printf("%c\n", c); // Output: 怠
JavaScript:
const char = '\u6020';
console.log(char); // Output: 怠
Java:
char c = '\u6020';
System.out.println(c); // Output: 怠
JSON:
{"text": "\u6020"} // Value: 怠
Python:
char = '\u6020'
print(char) # Output: 怠
Perl:
my $char = "\x{6020}";
print $char; # Output: 怠
PHP:
$char = "\x{6020}";
echo $char; // Output: 怠
Ruby:
char = "\u{6020}"
puts char # Output: 怠
Rust:
let c = '\u{6020}';
println!("{}", c); // Output: 怠
Go:
char := '\u6020'
fmt.Printf("%c\n", char) // Output: 怠
CSS:
/* CSS content property */
.element::before {
content: "\006020"; /* 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%80%A0
MD5:
87cfa7983412c67a7e2d9f0fa7c3ca66
SHA1:
9ca00680252f9230d29d5b387e9e885c75f6fd25
Base64:
5oCg