C:
char c = '\u6883';
printf("%c\n", c); // Output: 梃
JavaScript:
const char = '\u6883';
console.log(char); // Output: 梃
Java:
char c = '\u6883';
System.out.println(c); // Output: 梃
JSON:
{"text": "\u6883"} // Value: 梃
Python:
char = '\u6883'
print(char) # Output: 梃
Perl:
my $char = "\x{6883}";
print $char; # Output: 梃
PHP:
$char = "\x{6883}";
echo $char; // Output: 梃
Ruby:
char = "\u{6883}"
puts char # Output: 梃
Rust:
let c = '\u{6883}';
println!("{}", c); // Output: 梃
Go:
char := '\u6883'
fmt.Printf("%c\n", char) // Output: 梃
CSS:
/* CSS content property */
.element::before {
content: "\006883"; /* 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%83
MD5:
a15dcc755cb185ec02055f86327960d3
SHA1:
9320547410f9a4b4be87b2e65f90650afc2817ef
Base64:
5qKD