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