C:
char c = '\u7DAB';
printf("%c\n", c); // Output: 綫
JavaScript:
const char = '\u7DAB';
console.log(char); // Output: 綫
Java:
char c = '\u7DAB';
System.out.println(c); // Output: 綫
JSON:
{"text": "\u7DAB"} // Value: 綫
Python:
char = '\u7DAB'
print(char) # Output: 綫
Perl:
my $char = "\x{7DAB}";
print $char; # Output: 綫
PHP:
$char = "\x{7DAB}";
echo $char; // Output: 綫
Ruby:
char = "\u{7DAB}"
puts char # Output: 綫
Rust:
let c = '\u{7DAB}';
println!("{}", c); // Output: 綫
Go:
char := '\u7DAB'
fmt.Printf("%c\n", char) // Output: 綫
CSS:
/* CSS content property */
.element::before {
content: "\007DAB"; /* 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%AB
MD5:
1fd376d33cd7ffb35d42382779c90ff1
SHA1:
3e1caf88d5375116edd6f18c9bd1a3ef87e9c807
Base64:
57ar