C:
char c = '\u60B3';
printf("%c\n", c); // Output: 悳
JavaScript:
const char = '\u60B3';
console.log(char); // Output: 悳
Java:
char c = '\u60B3';
System.out.println(c); // Output: 悳
JSON:
{"text": "\u60B3"} // Value: 悳
Python:
char = '\u60B3'
print(char) # Output: 悳
Perl:
my $char = "\x{60B3}";
print $char; # Output: 悳
PHP:
$char = "\x{60B3}";
echo $char; // Output: 悳
Ruby:
char = "\u{60B3}"
puts char # Output: 悳
Rust:
let c = '\u{60B3}';
println!("{}", c); // Output: 悳
Go:
char := '\u60B3'
fmt.Printf("%c\n", char) // Output: 悳
CSS:
/* CSS content property */
.element::before {
content: "\0060B3"; /* 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%82%B3
MD5:
3326754e59edc0974a2943fbbc5fbd5e
SHA1:
f3bc42b40c3356ef768cb8f8f3b8a6700429caca
Base64:
5oKz