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