C:
char c = '\u60DF';
printf("%c\n", c); // Output: 惟
JavaScript:
const char = '\u60DF';
console.log(char); // Output: 惟
Java:
char c = '\u60DF';
System.out.println(c); // Output: 惟
JSON:
{"text": "\u60DF"} // Value: 惟
Python:
char = '\u60DF'
print(char) # Output: 惟
Perl:
my $char = "\x{60DF}";
print $char; # Output: 惟
PHP:
$char = "\x{60DF}";
echo $char; // Output: 惟
Ruby:
char = "\u{60DF}"
puts char # Output: 惟
Rust:
let c = '\u{60DF}';
println!("{}", c); // Output: 惟
Go:
char := '\u60DF'
fmt.Printf("%c\n", char) // Output: 惟
CSS:
/* CSS content property */
.element::before {
content: "\0060DF"; /* 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%83%9F
MD5:
21484f070073d29d64914ab993970d06
SHA1:
d0f1c63d3f7f91f3298699afbb61bb5ef230f7b6
Base64:
5oOf