C:
char c = '\u6030';
printf("%c\n", c); // Output: 怰
JavaScript:
const char = '\u6030';
console.log(char); // Output: 怰
Java:
char c = '\u6030';
System.out.println(c); // Output: 怰
JSON:
{"text": "\u6030"} // Value: 怰
Python:
char = '\u6030'
print(char) # Output: 怰
Perl:
my $char = "\x{6030}";
print $char; # Output: 怰
PHP:
$char = "\x{6030}";
echo $char; // Output: 怰
Ruby:
char = "\u{6030}"
puts char # Output: 怰
Rust:
let c = '\u{6030}';
println!("{}", c); // Output: 怰
Go:
char := '\u6030'
fmt.Printf("%c\n", char) // Output: 怰
CSS:
/* CSS content property */
.element::before {
content: "\006030"; /* 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%B0
MD5:
71927302e440414f12e6017b92112340
SHA1:
4a802a829d7a1e887e05174d0694efa25756b7bd
Base64:
5oCw