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