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