C:
char c = '\u7B4F';
printf("%c\n", c); // Output: 筏
JavaScript:
const char = '\u7B4F';
console.log(char); // Output: 筏
Java:
char c = '\u7B4F';
System.out.println(c); // Output: 筏
JSON:
{"text": "\u7B4F"} // Value: 筏
Python:
char = '\u7B4F'
print(char) # Output: 筏
Perl:
my $char = "\x{7B4F}";
print $char; # Output: 筏
PHP:
$char = "\x{7B4F}";
echo $char; // Output: 筏
Ruby:
char = "\u{7B4F}"
puts char # Output: 筏
Rust:
let c = '\u{7B4F}';
println!("{}", c); // Output: 筏
Go:
char := '\u7B4F'
fmt.Printf("%c\n", char) // Output: 筏
CSS:
/* CSS content property */
.element::before {
content: "\007B4F"; /* 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%AD%8F
MD5:
9821dee03361df77b44e9280d20234f0
SHA1:
09b93415e3675c6a0aaa670e63697edb9034908f
Base64:
562P