C:
char c = '\uB437';
printf("%c\n", c); // Output: 됷
JavaScript:
const char = '\uB437';
console.log(char); // Output: 됷
Java:
char c = '\uB437';
System.out.println(c); // Output: 됷
JSON:
{"text": "\uB437"} // Value: 됷
Python:
char = '\uB437'
print(char) # Output: 됷
Perl:
my $char = "\x{B437}";
print $char; # Output: 됷
PHP:
$char = "\x{B437}";
echo $char; // Output: 됷
Ruby:
char = "\u{B437}"
puts char # Output: 됷
Rust:
let c = '\u{B437}';
println!("{}", c); // Output: 됷
Go:
char := '\uB437'
fmt.Printf("%c\n", char) // Output: 됷
CSS:
/* CSS content property */
.element::before {
content: "\00B437"; /* 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%B7
MD5:
4b5e6b5244d0335354bff6610d370757
SHA1:
5a33a9e7f3e8f522f25ee56cc114579d8a0179e4
Base64:
65C3