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