C:
char c = '\uB436';
printf("%c\n", c); // Output: 됶
JavaScript:
const char = '\uB436';
console.log(char); // Output: 됶
Java:
char c = '\uB436';
System.out.println(c); // Output: 됶
JSON:
{"text": "\uB436"} // Value: 됶
Python:
char = '\uB436'
print(char) # Output: 됶
Perl:
my $char = "\x{B436}";
print $char; # Output: 됶
PHP:
$char = "\x{B436}";
echo $char; // Output: 됶
Ruby:
char = "\u{B436}"
puts char # Output: 됶
Rust:
let c = '\u{B436}';
println!("{}", c); // Output: 됶
Go:
char := '\uB436'
fmt.Printf("%c\n", char) // Output: 됶
CSS:
/* CSS content property */
.element::before {
content: "\00B436"; /* 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%B6
MD5:
2169ee69af314dbc48ed260c5f470f21
SHA1:
3bb60e49185984eee95e4f35017ffc2eef5c6196
Base64:
65C2