C:
char c = '\u6D19';
printf("%c\n", c); // Output: 洙
JavaScript:
const char = '\u6D19';
console.log(char); // Output: 洙
Java:
char c = '\u6D19';
System.out.println(c); // Output: 洙
JSON:
{"text": "\u6D19"} // Value: 洙
Python:
char = '\u6D19'
print(char) # Output: 洙
Perl:
my $char = "\x{6D19}";
print $char; # Output: 洙
PHP:
$char = "\x{6D19}";
echo $char; // Output: 洙
Ruby:
char = "\u{6D19}"
puts char # Output: 洙
Rust:
let c = '\u{6D19}';
println!("{}", c); // Output: 洙
Go:
char := '\u6D19'
fmt.Printf("%c\n", char) // Output: 洙
CSS:
/* CSS content property */
.element::before {
content: "\006D19"; /* 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=%E6%B4%99
MD5:
c4541a1a9834656edc8f743fe78ecf86
SHA1:
e76737ec91ee57a35bdae3212269df9715a5e744
Base64:
5rSZ