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