C:
char c = '\u5FB7';
printf("%c\n", c); // Output: 德
JavaScript:
const char = '\u5FB7';
console.log(char); // Output: 德
Java:
char c = '\u5FB7';
System.out.println(c); // Output: 德
JSON:
{"text": "\u5FB7"} // Value: 德
Python:
char = '\u5FB7'
print(char) # Output: 德
Perl:
my $char = "\x{5FB7}";
print $char; # Output: 德
PHP:
$char = "\x{5FB7}";
echo $char; // Output: 德
Ruby:
char = "\u{5FB7}"
puts char # Output: 德
Rust:
let c = '\u{5FB7}';
println!("{}", c); // Output: 德
Go:
char := '\u5FB7'
fmt.Printf("%c\n", char) // Output: 德
CSS:
/* CSS content property */
.element::before {
content: "\005FB7"; /* 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%BE%B7
MD5:
27686b82e3fe5f4577be410d2e35c6ce
SHA1:
69b5356d4f66757d58c9d11e2e4943186646cb41
Base64:
5b63