C:
char c = '\u6788';
printf("%c\n", c); // Output: 枈
JavaScript:
const char = '\u6788';
console.log(char); // Output: 枈
Java:
char c = '\u6788';
System.out.println(c); // Output: 枈
JSON:
{"text": "\u6788"} // Value: 枈
Python:
char = '\u6788'
print(char) # Output: 枈
Perl:
my $char = "\x{6788}";
print $char; # Output: 枈
PHP:
$char = "\x{6788}";
echo $char; // Output: 枈
Ruby:
char = "\u{6788}"
puts char # Output: 枈
Rust:
let c = '\u{6788}';
println!("{}", c); // Output: 枈
Go:
char := '\u6788'
fmt.Printf("%c\n", char) // Output: 枈
CSS:
/* CSS content property */
.element::before {
content: "\006788"; /* 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%9E%88
MD5:
b1dbde36b65c3d8b69ada4669c2a5f24
SHA1:
bdac10129462ac799ddf2dae03020b542f79db85
Base64:
5p6I