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