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