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