C:
char c = '\u4F10';
printf("%c\n", c); // Output: 伐
JavaScript:
const char = '\u4F10';
console.log(char); // Output: 伐
Java:
char c = '\u4F10';
System.out.println(c); // Output: 伐
JSON:
{"text": "\u4F10"} // Value: 伐
Python:
char = '\u4F10'
print(char) # Output: 伐
Perl:
my $char = "\x{4F10}";
print $char; # Output: 伐
PHP:
$char = "\x{4F10}";
echo $char; // Output: 伐
Ruby:
char = "\u{4F10}"
puts char # Output: 伐
Rust:
let c = '\u{4F10}';
println!("{}", c); // Output: 伐
Go:
char := '\u4F10'
fmt.Printf("%c\n", char) // Output: 伐
CSS:
/* CSS content property */
.element::before {
content: "\004F10"; /* 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=%E4%BC%90
MD5:
475509e3f29b2b37ebf6d6605d02b6ec
SHA1:
d66746c579325aef3f88e361d00b61d0451e87cf
Base64:
5LyQ