C:
char c = '\uB80C';
printf("%c\n", c); // Output: 렌
JavaScript:
const char = '\uB80C';
console.log(char); // Output: 렌
Java:
char c = '\uB80C';
System.out.println(c); // Output: 렌
JSON:
{"text": "\uB80C"} // Value: 렌
Python:
char = '\uB80C'
print(char) # Output: 렌
Perl:
my $char = "\x{B80C}";
print $char; # Output: 렌
PHP:
$char = "\x{B80C}";
echo $char; // Output: 렌
Ruby:
char = "\u{B80C}"
puts char # Output: 렌
Rust:
let c = '\u{B80C}';
println!("{}", c); // Output: 렌
Go:
char := '\uB80C'
fmt.Printf("%c\n", char) // Output: 렌
CSS:
/* CSS content property */
.element::before {
content: "\00B80C"; /* 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%A0%8C
MD5:
fd2c2eaea65edd9dc6e6876638fb21d9
SHA1:
2bb7c695cf239a748dd83ae053f60ad80759df72
Base64:
66CM