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