C:
char c = '\u601A';
printf("%c\n", c); // Output: 怚
JavaScript:
const char = '\u601A';
console.log(char); // Output: 怚
Java:
char c = '\u601A';
System.out.println(c); // Output: 怚
JSON:
{"text": "\u601A"} // Value: 怚
Python:
char = '\u601A'
print(char) # Output: 怚
Perl:
my $char = "\x{601A}";
print $char; # Output: 怚
PHP:
$char = "\x{601A}";
echo $char; // Output: 怚
Ruby:
char = "\u{601A}"
puts char # Output: 怚
Rust:
let c = '\u{601A}';
println!("{}", c); // Output: 怚
Go:
char := '\u601A'
fmt.Printf("%c\n", char) // Output: 怚
CSS:
/* CSS content property */
.element::before {
content: "\00601A"; /* 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%9A
MD5:
934e593b1cac37646f99895635bca680
SHA1:
e7f728c16797167e39ee151d4b325a62b9fcf993
Base64:
5oCa