C:
char c = '\uB42E';
printf("%c\n", c); // Output: 됮
JavaScript:
const char = '\uB42E';
console.log(char); // Output: 됮
Java:
char c = '\uB42E';
System.out.println(c); // Output: 됮
JSON:
{"text": "\uB42E"} // Value: 됮
Python:
char = '\uB42E'
print(char) # Output: 됮
Perl:
my $char = "\x{B42E}";
print $char; # Output: 됮
PHP:
$char = "\x{B42E}";
echo $char; // Output: 됮
Ruby:
char = "\u{B42E}"
puts char # Output: 됮
Rust:
let c = '\u{B42E}';
println!("{}", c); // Output: 됮
Go:
char := '\uB42E'
fmt.Printf("%c\n", char) // Output: 됮
CSS:
/* CSS content property */
.element::before {
content: "\00B42E"; /* 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=%EB%90%AE
MD5:
59c9d322b838301af427089f5c5ef9e3
SHA1:
dbf23134c2e017cd72349afc9d3e55917f1a213c
Base64:
65Cu