C:
char c = '\u67CA';
printf("%c\n", c); // Output: 柊
JavaScript:
const char = '\u67CA';
console.log(char); // Output: 柊
Java:
char c = '\u67CA';
System.out.println(c); // Output: 柊
JSON:
{"text": "\u67CA"} // Value: 柊
Python:
char = '\u67CA'
print(char) # Output: 柊
Perl:
my $char = "\x{67CA}";
print $char; # Output: 柊
PHP:
$char = "\x{67CA}";
echo $char; // Output: 柊
Ruby:
char = "\u{67CA}"
puts char # Output: 柊
Rust:
let c = '\u{67CA}';
println!("{}", c); // Output: 柊
Go:
char := '\u67CA'
fmt.Printf("%c\n", char) // Output: 柊
CSS:
/* CSS content property */
.element::before {
content: "\0067CA"; /* 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%8A
MD5:
fa84cd2e8e51caa46a3a6de1ecab76fd
SHA1:
e04e64d44d8a24ed8fd7be394d74a186f7411d5b
Base64:
5p+K