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