C:
char c = '\u6FCB';
printf("%c\n", c); // Output: 濋
JavaScript:
const char = '\u6FCB';
console.log(char); // Output: 濋
Java:
char c = '\u6FCB';
System.out.println(c); // Output: 濋
JSON:
{"text": "\u6FCB"} // Value: 濋
Python:
char = '\u6FCB'
print(char) # Output: 濋
Perl:
my $char = "\x{6FCB}";
print $char; # Output: 濋
PHP:
$char = "\x{6FCB}";
echo $char; // Output: 濋
Ruby:
char = "\u{6FCB}"
puts char # Output: 濋
Rust:
let c = '\u{6FCB}';
println!("{}", c); // Output: 濋
Go:
char := '\u6FCB'
fmt.Printf("%c\n", char) // Output: 濋
CSS:
/* CSS content property */
.element::before {
content: "\006FCB"; /* 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%BF%8B
MD5:
99ba5368145c8f281a6df6f6d8ed7270
SHA1:
a9786f71f745759e5a6bc45f232633489f835190
Base64:
5r+L