C:
char c = '\u7C38';
printf("%c\n", c); // Output: 簸
JavaScript:
const char = '\u7C38';
console.log(char); // Output: 簸
Java:
char c = '\u7C38';
System.out.println(c); // Output: 簸
JSON:
{"text": "\u7C38"} // Value: 簸
Python:
char = '\u7C38'
print(char) # Output: 簸
Perl:
my $char = "\x{7C38}";
print $char; # Output: 簸
PHP:
$char = "\x{7C38}";
echo $char; // Output: 簸
Ruby:
char = "\u{7C38}"
puts char # Output: 簸
Rust:
let c = '\u{7C38}';
println!("{}", c); // Output: 簸
Go:
char := '\u7C38'
fmt.Printf("%c\n", char) // Output: 簸
CSS:
/* CSS content property */
.element::before {
content: "\007C38"; /* 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%B0%B8
MD5:
6f1d9867996d2afe91ba59349e9ececb
SHA1:
9ff259a78d847e4257d03d78eeb31c540c359c1a
Base64:
57C4