C:
char c = '\u67F3';
printf("%c\n", c); // Output: 柳
JavaScript:
const char = '\u67F3';
console.log(char); // Output: 柳
Java:
char c = '\u67F3';
System.out.println(c); // Output: 柳
JSON:
{"text": "\u67F3"} // Value: 柳
Python:
char = '\u67F3'
print(char) # Output: 柳
Perl:
my $char = "\x{67F3}";
print $char; # Output: 柳
PHP:
$char = "\x{67F3}";
echo $char; // Output: 柳
Ruby:
char = "\u{67F3}"
puts char # Output: 柳
Rust:
let c = '\u{67F3}';
println!("{}", c); // Output: 柳
Go:
char := '\u67F3'
fmt.Printf("%c\n", char) // Output: 柳
CSS:
/* CSS content property */
.element::before {
content: "\0067F3"; /* 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=%E6%9F%B3
MD5:
224a09b839c23926342a4efc4f3002a0
SHA1:
0dc062bfee267e993f73a5e1c55a80fbfb83cf12
Base64:
5p+z