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