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