C:
char c = '\u7B8F';
printf("%c\n", c); // Output: 箏
JavaScript:
const char = '\u7B8F';
console.log(char); // Output: 箏
Java:
char c = '\u7B8F';
System.out.println(c); // Output: 箏
JSON:
{"text": "\u7B8F"} // Value: 箏
Python:
char = '\u7B8F'
print(char) # Output: 箏
Perl:
my $char = "\x{7B8F}";
print $char; # Output: 箏
PHP:
$char = "\x{7B8F}";
echo $char; // Output: 箏
Ruby:
char = "\u{7B8F}"
puts char # Output: 箏
Rust:
let c = '\u{7B8F}';
println!("{}", c); // Output: 箏
Go:
char := '\u7B8F'
fmt.Printf("%c\n", char) // Output: 箏
CSS:
/* CSS content property */
.element::before {
content: "\007B8F"; /* 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%AE%8F
MD5:
c9385b6992c9885e49d18990e9d35aa9
SHA1:
3ccd1c6ae1197d6409313664bc2f193ff730e064
Base64:
566P