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