C:
char c = '\u7BB4';
printf("%c\n", c); // Output: 箴
JavaScript:
const char = '\u7BB4';
console.log(char); // Output: 箴
Java:
char c = '\u7BB4';
System.out.println(c); // Output: 箴
JSON:
{"text": "\u7BB4"} // Value: 箴
Python:
char = '\u7BB4'
print(char) # Output: 箴
Perl:
my $char = "\x{7BB4}";
print $char; # Output: 箴
PHP:
$char = "\x{7BB4}";
echo $char; // Output: 箴
Ruby:
char = "\u{7BB4}"
puts char # Output: 箴
Rust:
let c = '\u{7BB4}';
println!("{}", c); // Output: 箴
Go:
char := '\u7BB4'
fmt.Printf("%c\n", char) // Output: 箴
CSS:
/* CSS content property */
.element::before {
content: "\007BB4"; /* 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%B4
MD5:
951f769cc43082523e489a10fb8d97b2
SHA1:
e5a1a750a8def194dfb179fb2477236dfd490b70
Base64:
5660