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