C:
char c = '\u6008';
printf("%c\n", c); // Output: 怈
JavaScript:
const char = '\u6008';
console.log(char); // Output: 怈
Java:
char c = '\u6008';
System.out.println(c); // Output: 怈
JSON:
{"text": "\u6008"} // Value: 怈
Python:
char = '\u6008'
print(char) # Output: 怈
Perl:
my $char = "\x{6008}";
print $char; # Output: 怈
PHP:
$char = "\x{6008}";
echo $char; // Output: 怈
Ruby:
char = "\u{6008}"
puts char # Output: 怈
Rust:
let c = '\u{6008}';
println!("{}", c); // Output: 怈
Go:
char := '\u6008'
fmt.Printf("%c\n", char) // Output: 怈
CSS:
/* CSS content property */
.element::before {
content: "\006008"; /* 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%88
MD5:
4ff4d525f529d77f27161c001a486f25
SHA1:
0ca23e36391e39b0da792267c7d5655a600447e3
Base64:
5oCI