C:
char c = '\uB795';
printf("%c\n", c); // Output: 랕
JavaScript:
const char = '\uB795';
console.log(char); // Output: 랕
Java:
char c = '\uB795';
System.out.println(c); // Output: 랕
JSON:
{"text": "\uB795"} // Value: 랕
Python:
char = '\uB795'
print(char) # Output: 랕
Perl:
my $char = "\x{B795}";
print $char; # Output: 랕
PHP:
$char = "\x{B795}";
echo $char; // Output: 랕
Ruby:
char = "\u{B795}"
puts char # Output: 랕
Rust:
let c = '\u{B795}';
println!("{}", c); // Output: 랕
Go:
char := '\uB795'
fmt.Printf("%c\n", char) // Output: 랕
CSS:
/* CSS content property */
.element::before {
content: "\00B795"; /* 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%9E%95
MD5:
64b65592404c3978baa69c2aa13c28eb
SHA1:
cff89eb79e089d67f582b0429db24df5bfc8b8b3
Base64:
656V