C:
char c = '\u6846';
printf("%c\n", c); // Output: 框
JavaScript:
const char = '\u6846';
console.log(char); // Output: 框
Java:
char c = '\u6846';
System.out.println(c); // Output: 框
JSON:
{"text": "\u6846"} // Value: 框
Python:
char = '\u6846'
print(char) # Output: 框
Perl:
my $char = "\x{6846}";
print $char; # Output: 框
PHP:
$char = "\x{6846}";
echo $char; // Output: 框
Ruby:
char = "\u{6846}"
puts char # Output: 框
Rust:
let c = '\u{6846}';
println!("{}", c); // Output: 框
Go:
char := '\u6846'
fmt.Printf("%c\n", char) // Output: 框
CSS:
/* CSS content property */
.element::before {
content: "\006846"; /* 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=%E6%A1%86
MD5:
41ec0097f7859a0597dab0b4f2b5a278
SHA1:
72e94b48554262cc195674b9d83cf0835b00e757
Base64:
5qGG