C:
char c = '\u6232';
printf("%c\n", c); // Output: 戲
JavaScript:
const char = '\u6232';
console.log(char); // Output: 戲
Java:
char c = '\u6232';
System.out.println(c); // Output: 戲
JSON:
{"text": "\u6232"} // Value: 戲
Python:
char = '\u6232'
print(char) # Output: 戲
Perl:
my $char = "\x{6232}";
print $char; # Output: 戲
PHP:
$char = "\x{6232}";
echo $char; // Output: 戲
Ruby:
char = "\u{6232}"
puts char # Output: 戲
Rust:
let c = '\u{6232}';
println!("{}", c); // Output: 戲
Go:
char := '\u6232'
fmt.Printf("%c\n", char) // Output: 戲
CSS:
/* CSS content property */
.element::before {
content: "\006232"; /* 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%B2
MD5:
efac62243fdcc14793110865d75b74ae
SHA1:
095c7236992bc35bbe24f3949e7327d5db6c546d
Base64:
5oiy