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