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