C:
char c = '\u600C';
printf("%c\n", c); // Output: 怌
JavaScript:
const char = '\u600C';
console.log(char); // Output: 怌
Java:
char c = '\u600C';
System.out.println(c); // Output: 怌
JSON:
{"text": "\u600C"} // Value: 怌
Python:
char = '\u600C'
print(char) # Output: 怌
Perl:
my $char = "\x{600C}";
print $char; # Output: 怌
PHP:
$char = "\x{600C}";
echo $char; // Output: 怌
Ruby:
char = "\u{600C}"
puts char # Output: 怌
Rust:
let c = '\u{600C}';
println!("{}", c); // Output: 怌
Go:
char := '\u600C'
fmt.Printf("%c\n", char) // Output: 怌
CSS:
/* CSS content property */
.element::before {
content: "\00600C"; /* 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%8C
MD5:
0eeb2abaed58d203a8120237df3a12b4
SHA1:
95217d3e2f8ec5fa285ff924ec15470c624b35de
Base64:
5oCM