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