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