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