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