C:
char c = '\u7C68';
printf("%c\n", c); // Output: 籨
JavaScript:
const char = '\u7C68';
console.log(char); // Output: 籨
Java:
char c = '\u7C68';
System.out.println(c); // Output: 籨
JSON:
{"text": "\u7C68"} // Value: 籨
Python:
char = '\u7C68'
print(char) # Output: 籨
Perl:
my $char = "\x{7C68}";
print $char; # Output: 籨
PHP:
$char = "\x{7C68}";
echo $char; // Output: 籨
Ruby:
char = "\u{7C68}"
puts char # Output: 籨
Rust:
let c = '\u{7C68}';
println!("{}", c); // Output: 籨
Go:
char := '\u7C68'
fmt.Printf("%c\n", char) // Output: 籨
CSS:
/* CSS content property */
.element::before {
content: "\007C68"; /* 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%B1%A8
MD5:
cd517669fd00c44e316e60037c70e986
SHA1:
37fd76722118e429f15fd0d5a40f3046b666453a
Base64:
57Go