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