C:
char c = '\u7118';
printf("%c\n", c); // Output: 焘
JavaScript:
const char = '\u7118';
console.log(char); // Output: 焘
Java:
char c = '\u7118';
System.out.println(c); // Output: 焘
JSON:
{"text": "\u7118"} // Value: 焘
Python:
char = '\u7118'
print(char) # Output: 焘
Perl:
my $char = "\x{7118}";
print $char; # Output: 焘
PHP:
$char = "\x{7118}";
echo $char; // Output: 焘
Ruby:
char = "\u{7118}"
puts char # Output: 焘
Rust:
let c = '\u{7118}';
println!("{}", c); // Output: 焘
Go:
char := '\u7118'
fmt.Printf("%c\n", char) // Output: 焘
CSS:
/* CSS content property */
.element::before {
content: "\007118"; /* 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=%E7%84%98
MD5:
62b0b24b89c14ccad1d293cdd516f6b1
SHA1:
d650a9571ed252ad964ce15cc9b2485b6be707cc
Base64:
54SY