C:
char c = '\u570B';
printf("%c\n", c); // Output: 國
JavaScript:
const char = '\u570B';
console.log(char); // Output: 國
Java:
char c = '\u570B';
System.out.println(c); // Output: 國
JSON:
{"text": "\u570B"} // Value: 國
Python:
char = '\u570B'
print(char) # Output: 國
Perl:
my $char = "\x{570B}";
print $char; # Output: 國
PHP:
$char = "\x{570B}";
echo $char; // Output: 國
Ruby:
char = "\u{570B}"
puts char # Output: 國
Rust:
let c = '\u{570B}';
println!("{}", c); // Output: 國
Go:
char := '\u570B'
fmt.Printf("%c\n", char) // Output: 國
CSS:
/* CSS content property */
.element::before {
content: "\00570B"; /* 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=%E5%9C%8B
MD5:
b00773f6b0e4b75bd3846dacc2838e0e
SHA1:
34bb48d3b91f4c9475f6e3187365314e1d8e672d
Base64:
5ZyL