C:
char c = '\u6589';
printf("%c\n", c); // Output: 斉
JavaScript:
const char = '\u6589';
console.log(char); // Output: 斉
Java:
char c = '\u6589';
System.out.println(c); // Output: 斉
JSON:
{"text": "\u6589"} // Value: 斉
Python:
char = '\u6589'
print(char) # Output: 斉
Perl:
my $char = "\x{6589}";
print $char; # Output: 斉
PHP:
$char = "\x{6589}";
echo $char; // Output: 斉
Ruby:
char = "\u{6589}"
puts char # Output: 斉
Rust:
let c = '\u{6589}';
println!("{}", c); // Output: 斉
Go:
char := '\u6589'
fmt.Printf("%c\n", char) // Output: 斉
CSS:
/* CSS content property */
.element::before {
content: "\006589"; /* 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%96%89
MD5:
f854582229d41ba0260187df692b5bea
SHA1:
3652977ca84f2556212d5c83bc7a6e1e16e77ed2
Base64:
5paJ