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