C:
char c = '\u7B04';
printf("%c\n", c); // Output: 笄
JavaScript:
const char = '\u7B04';
console.log(char); // Output: 笄
Java:
char c = '\u7B04';
System.out.println(c); // Output: 笄
JSON:
{"text": "\u7B04"} // Value: 笄
Python:
char = '\u7B04'
print(char) # Output: 笄
Perl:
my $char = "\x{7B04}";
print $char; # Output: 笄
PHP:
$char = "\x{7B04}";
echo $char; // Output: 笄
Ruby:
char = "\u{7B04}"
puts char # Output: 笄
Rust:
let c = '\u{7B04}';
println!("{}", c); // Output: 笄
Go:
char := '\u7B04'
fmt.Printf("%c\n", char) // Output: 笄
CSS:
/* CSS content property */
.element::before {
content: "\007B04"; /* 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%AC%84
MD5:
59d3dd97290d2ee40269419d3153e0a6
SHA1:
fdcf70426f15cbb089f2e7ef890ef2689cc00809
Base64:
56yE