C:
char c = '\u5F26';
printf("%c\n", c); // Output: 弦
JavaScript:
const char = '\u5F26';
console.log(char); // Output: 弦
Java:
char c = '\u5F26';
System.out.println(c); // Output: 弦
JSON:
{"text": "\u5F26"} // Value: 弦
Python:
char = '\u5F26'
print(char) # Output: 弦
Perl:
my $char = "\x{5F26}";
print $char; # Output: 弦
PHP:
$char = "\x{5F26}";
echo $char; // Output: 弦
Ruby:
char = "\u{5F26}"
puts char # Output: 弦
Rust:
let c = '\u{5F26}';
println!("{}", c); // Output: 弦
Go:
char := '\u5F26'
fmt.Printf("%c\n", char) // Output: 弦
CSS:
/* CSS content property */
.element::before {
content: "\005F26"; /* 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%BC%A6
MD5:
7dede8be34889ab68b501ed5298c98f8
SHA1:
502206503424d380356f1ec61e5b8a3f4afcebdc
Base64:
5bym