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