C:
char c = '\u67DD';
printf("%c\n", c); // Output: 柝
JavaScript:
const char = '\u67DD';
console.log(char); // Output: 柝
Java:
char c = '\u67DD';
System.out.println(c); // Output: 柝
JSON:
{"text": "\u67DD"} // Value: 柝
Python:
char = '\u67DD'
print(char) # Output: 柝
Perl:
my $char = "\x{67DD}";
print $char; # Output: 柝
PHP:
$char = "\x{67DD}";
echo $char; // Output: 柝
Ruby:
char = "\u{67DD}"
puts char # Output: 柝
Rust:
let c = '\u{67DD}';
println!("{}", c); // Output: 柝
Go:
char := '\u67DD'
fmt.Printf("%c\n", char) // Output: 柝
CSS:
/* CSS content property */
.element::before {
content: "\0067DD"; /* 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%9D
MD5:
7261ae450422eab4f55e4342d4adb53d
SHA1:
22126fb3c7e1834b784b3a17c9ecf70fc5272fc9
Base64:
5p+d