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