C:
char c = '\u6853';
printf("%c\n", c); // Output: 桓
JavaScript:
const char = '\u6853';
console.log(char); // Output: 桓
Java:
char c = '\u6853';
System.out.println(c); // Output: 桓
JSON:
{"text": "\u6853"} // Value: 桓
Python:
char = '\u6853'
print(char) # Output: 桓
Perl:
my $char = "\x{6853}";
print $char; # Output: 桓
PHP:
$char = "\x{6853}";
echo $char; // Output: 桓
Ruby:
char = "\u{6853}"
puts char # Output: 桓
Rust:
let c = '\u{6853}';
println!("{}", c); // Output: 桓
Go:
char := '\u6853'
fmt.Printf("%c\n", char) // Output: 桓
CSS:
/* CSS content property */
.element::before {
content: "\006853"; /* 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%A1%93
MD5:
0c3c04151f80504b9a3c61bd43161d02
SHA1:
145be4fcdf2b3cb2decb4cc0cf2d48ff0b922d24
Base64:
5qGT