C:
char c = '\u8861';
printf("%c\n", c); // Output: 衡
JavaScript:
const char = '\u8861';
console.log(char); // Output: 衡
Java:
char c = '\u8861';
System.out.println(c); // Output: 衡
JSON:
{"text": "\u8861"} // Value: 衡
Python:
char = '\u8861'
print(char) # Output: 衡
Perl:
my $char = "\x{8861}";
print $char; # Output: 衡
PHP:
$char = "\x{8861}";
echo $char; // Output: 衡
Ruby:
char = "\u{8861}"
puts char # Output: 衡
Rust:
let c = '\u{8861}';
println!("{}", c); // Output: 衡
Go:
char := '\u8861'
fmt.Printf("%c\n", char) // Output: 衡
CSS:
/* CSS content property */
.element::before {
content: "\008861"; /* 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=%E8%A1%A1
MD5:
37b3cff985268c7a940c1f2de78e4ee9
SHA1:
ef551ec7acb505676be4a20fd418087f030fa691
Base64:
6KGh