C:
char c = '\u7834';
printf("%c\n", c); // Output: 破
JavaScript:
const char = '\u7834';
console.log(char); // Output: 破
Java:
char c = '\u7834';
System.out.println(c); // Output: 破
JSON:
{"text": "\u7834"} // Value: 破
Python:
char = '\u7834'
print(char) # Output: 破
Perl:
my $char = "\x{7834}";
print $char; # Output: 破
PHP:
$char = "\x{7834}";
echo $char; // Output: 破
Ruby:
char = "\u{7834}"
puts char # Output: 破
Rust:
let c = '\u{7834}';
println!("{}", c); // Output: 破
Go:
char := '\u7834'
fmt.Printf("%c\n", char) // Output: 破
CSS:
/* CSS content property */
.element::before {
content: "\007834"; /* 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=%E7%A0%B4
MD5:
39f9dff8ce1737f69002d6c09475ee16
SHA1:
e22232edc38c987bf109212fe03f4879e109f249
Base64:
56C0