C:
char c = '\u6F0B';
printf("%c\n", c); // Output: 漋
JavaScript:
const char = '\u6F0B';
console.log(char); // Output: 漋
Java:
char c = '\u6F0B';
System.out.println(c); // Output: 漋
JSON:
{"text": "\u6F0B"} // Value: 漋
Python:
char = '\u6F0B'
print(char) # Output: 漋
Perl:
my $char = "\x{6F0B}";
print $char; # Output: 漋
PHP:
$char = "\x{6F0B}";
echo $char; // Output: 漋
Ruby:
char = "\u{6F0B}"
puts char # Output: 漋
Rust:
let c = '\u{6F0B}';
println!("{}", c); // Output: 漋
Go:
char := '\u6F0B'
fmt.Printf("%c\n", char) // Output: 漋
CSS:
/* CSS content property */
.element::before {
content: "\006F0B"; /* 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%8B
MD5:
3e2888b30769d19cffbd5971853c01ed
SHA1:
6712da54e958231a7f64cfcd0b6a0249bd17f6c0
Base64:
5ryL