C:
char c = '\u7B71';
printf("%c\n", c); // Output: 筱
JavaScript:
const char = '\u7B71';
console.log(char); // Output: 筱
Java:
char c = '\u7B71';
System.out.println(c); // Output: 筱
JSON:
{"text": "\u7B71"} // Value: 筱
Python:
char = '\u7B71'
print(char) # Output: 筱
Perl:
my $char = "\x{7B71}";
print $char; # Output: 筱
PHP:
$char = "\x{7B71}";
echo $char; // Output: 筱
Ruby:
char = "\u{7B71}"
puts char # Output: 筱
Rust:
let c = '\u{7B71}';
println!("{}", c); // Output: 筱
Go:
char := '\u7B71'
fmt.Printf("%c\n", char) // Output: 筱
CSS:
/* CSS content property */
.element::before {
content: "\007B71"; /* 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%AD%B1
MD5:
54a0191af5b7af3992104f293d277ef0
SHA1:
0fe37bf1eb00fe7c2ba37f3f39bf7f2e0251f026
Base64:
562x