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