C:
char c = '\u6233';
printf("%c\n", c); // Output: 戳
JavaScript:
const char = '\u6233';
console.log(char); // Output: 戳
Java:
char c = '\u6233';
System.out.println(c); // Output: 戳
JSON:
{"text": "\u6233"} // Value: 戳
Python:
char = '\u6233'
print(char) # Output: 戳
Perl:
my $char = "\x{6233}";
print $char; # Output: 戳
PHP:
$char = "\x{6233}";
echo $char; // Output: 戳
Ruby:
char = "\u{6233}"
puts char # Output: 戳
Rust:
let c = '\u{6233}';
println!("{}", c); // Output: 戳
Go:
char := '\u6233'
fmt.Printf("%c\n", char) // Output: 戳
CSS:
/* CSS content property */
.element::before {
content: "\006233"; /* 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%88%B3
MD5:
07ea60dae61a5597aa536adb75c375a4
SHA1:
42b65a353b4ba249d1012a2edef5a47667134300
Base64:
5oiz