C:
char c = '\u6748';
printf("%c\n", c); // Output: 杈
JavaScript:
const char = '\u6748';
console.log(char); // Output: 杈
Java:
char c = '\u6748';
System.out.println(c); // Output: 杈
JSON:
{"text": "\u6748"} // Value: 杈
Python:
char = '\u6748'
print(char) # Output: 杈
Perl:
my $char = "\x{6748}";
print $char; # Output: 杈
PHP:
$char = "\x{6748}";
echo $char; // Output: 杈
Ruby:
char = "\u{6748}"
puts char # Output: 杈
Rust:
let c = '\u{6748}';
println!("{}", c); // Output: 杈
Go:
char := '\u6748'
fmt.Printf("%c\n", char) // Output: 杈
CSS:
/* CSS content property */
.element::before {
content: "\006748"; /* 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%9D%88
MD5:
1aaa9e0aa721e57ece5317765b22a090
SHA1:
673d948025b3567f695dcb1335920eae219e4adb
Base64:
5p2I