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