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