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