C:
char c = '\u6CE1';
printf("%c\n", c); // Output: 泡
JavaScript:
const char = '\u6CE1';
console.log(char); // Output: 泡
Java:
char c = '\u6CE1';
System.out.println(c); // Output: 泡
JSON:
{"text": "\u6CE1"} // Value: 泡
Python:
char = '\u6CE1'
print(char) # Output: 泡
Perl:
my $char = "\x{6CE1}";
print $char; # Output: 泡
PHP:
$char = "\x{6CE1}";
echo $char; // Output: 泡
Ruby:
char = "\u{6CE1}"
puts char # Output: 泡
Rust:
let c = '\u{6CE1}';
println!("{}", c); // Output: 泡
Go:
char := '\u6CE1'
fmt.Printf("%c\n", char) // Output: 泡
CSS:
/* CSS content property */
.element::before {
content: "\006CE1"; /* 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%B3%A1
MD5:
bca695fcbca4f57b3b883b81ce1f3f2d
SHA1:
b19a24e17bbc8355de41c2c431a2a45523feba8f
Base64:
5rOh