C:
char c = '\u7B30';
printf("%c\n", c); // Output: 笰
JavaScript:
const char = '\u7B30';
console.log(char); // Output: 笰
Java:
char c = '\u7B30';
System.out.println(c); // Output: 笰
JSON:
{"text": "\u7B30"} // Value: 笰
Python:
char = '\u7B30'
print(char) # Output: 笰
Perl:
my $char = "\x{7B30}";
print $char; # Output: 笰
PHP:
$char = "\x{7B30}";
echo $char; // Output: 笰
Ruby:
char = "\u{7B30}"
puts char # Output: 笰
Rust:
let c = '\u{7B30}';
println!("{}", c); // Output: 笰
Go:
char := '\u7B30'
fmt.Printf("%c\n", char) // Output: 笰
CSS:
/* CSS content property */
.element::before {
content: "\007B30"; /* 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%AC%B0
MD5:
67192691537631291d377f0f482f65b5
SHA1:
ef3641ab0f9c1a660901f3adb049132fabe5d3d1
Base64:
56yw