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