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