C:
char c = '\u600B';
printf("%c\n", c); // Output: 怋
JavaScript:
const char = '\u600B';
console.log(char); // Output: 怋
Java:
char c = '\u600B';
System.out.println(c); // Output: 怋
JSON:
{"text": "\u600B"} // Value: 怋
Python:
char = '\u600B'
print(char) # Output: 怋
Perl:
my $char = "\x{600B}";
print $char; # Output: 怋
PHP:
$char = "\x{600B}";
echo $char; // Output: 怋
Ruby:
char = "\u{600B}"
puts char # Output: 怋
Rust:
let c = '\u{600B}';
println!("{}", c); // Output: 怋
Go:
char := '\u600B'
fmt.Printf("%c\n", char) // Output: 怋
CSS:
/* CSS content property */
.element::before {
content: "\00600B"; /* 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%80%8B
MD5:
276735441b425fafcb1d7899bae8d9ed
SHA1:
352bf3b879fb19ed6455773211bc363c6e39e524
Base64:
5oCL