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