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