C:
char c = '\u7DB0';
printf("%c\n", c); // Output: 綰
JavaScript:
const char = '\u7DB0';
console.log(char); // Output: 綰
Java:
char c = '\u7DB0';
System.out.println(c); // Output: 綰
JSON:
{"text": "\u7DB0"} // Value: 綰
Python:
char = '\u7DB0'
print(char) # Output: 綰
Perl:
my $char = "\x{7DB0}";
print $char; # Output: 綰
PHP:
$char = "\x{7DB0}";
echo $char; // Output: 綰
Ruby:
char = "\u{7DB0}"
puts char # Output: 綰
Rust:
let c = '\u{7DB0}';
println!("{}", c); // Output: 綰
Go:
char := '\u7DB0'
fmt.Printf("%c\n", char) // Output: 綰
CSS:
/* CSS content property */
.element::before {
content: "\007DB0"; /* 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%B6%B0
MD5:
15da132954a284aad422839c6edffa22
SHA1:
716050a2bf5273c3911ff37a0ae85cea7a09fba2
Base64:
57aw