C:
char c = '\u5960';
printf("%c\n", c); // Output: 奠
JavaScript:
const char = '\u5960';
console.log(char); // Output: 奠
Java:
char c = '\u5960';
System.out.println(c); // Output: 奠
JSON:
{"text": "\u5960"} // Value: 奠
Python:
char = '\u5960'
print(char) # Output: 奠
Perl:
my $char = "\x{5960}";
print $char; # Output: 奠
PHP:
$char = "\x{5960}";
echo $char; // Output: 奠
Ruby:
char = "\u{5960}"
puts char # Output: 奠
Rust:
let c = '\u{5960}';
println!("{}", c); // Output: 奠
Go:
char := '\u5960'
fmt.Printf("%c\n", char) // Output: 奠
CSS:
/* CSS content property */
.element::before {
content: "\005960"; /* 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=%E5%A5%A0
MD5:
e7152ed5ce233d086717539129aea89e
SHA1:
c68783495b8baad3625b6f24903649d08e3850a8
Base64:
5aWg