C:
char c = '\u6852';
printf("%c\n", c); // Output: 桒
JavaScript:
const char = '\u6852';
console.log(char); // Output: 桒
Java:
char c = '\u6852';
System.out.println(c); // Output: 桒
JSON:
{"text": "\u6852"} // Value: 桒
Python:
char = '\u6852'
print(char) # Output: 桒
Perl:
my $char = "\x{6852}";
print $char; # Output: 桒
PHP:
$char = "\x{6852}";
echo $char; // Output: 桒
Ruby:
char = "\u{6852}"
puts char # Output: 桒
Rust:
let c = '\u{6852}';
println!("{}", c); // Output: 桒
Go:
char := '\u6852'
fmt.Printf("%c\n", char) // Output: 桒
CSS:
/* CSS content property */
.element::before {
content: "\006852"; /* 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%92
MD5:
550f306d19dc7185c252dbe6e0cf0e3d
SHA1:
6ed03440b03afecbca6f48a6027c9f5df1bbee84
Base64:
5qGS