C:
char c = '\u6886';
printf("%c\n", c); // Output: 梆
JavaScript:
const char = '\u6886';
console.log(char); // Output: 梆
Java:
char c = '\u6886';
System.out.println(c); // Output: 梆
JSON:
{"text": "\u6886"} // Value: 梆
Python:
char = '\u6886'
print(char) # Output: 梆
Perl:
my $char = "\x{6886}";
print $char; # Output: 梆
PHP:
$char = "\x{6886}";
echo $char; // Output: 梆
Ruby:
char = "\u{6886}"
puts char # Output: 梆
Rust:
let c = '\u{6886}';
println!("{}", c); // Output: 梆
Go:
char := '\u6886'
fmt.Printf("%c\n", char) // Output: 梆
CSS:
/* CSS content property */
.element::before {
content: "\006886"; /* 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%A2%86
MD5:
3599f202fa9d5255fc14d3a704540f36
SHA1:
94aa0e75714ca47a129437beeb632126a3e3a0ed
Base64:
5qKG