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