C:
char c = '\uB5B4';
printf("%c\n", c); // Output: 떴
JavaScript:
const char = '\uB5B4';
console.log(char); // Output: 떴
Java:
char c = '\uB5B4';
System.out.println(c); // Output: 떴
JSON:
{"text": "\uB5B4"} // Value: 떴
Python:
char = '\uB5B4'
print(char) # Output: 떴
Perl:
my $char = "\x{B5B4}";
print $char; # Output: 떴
PHP:
$char = "\x{B5B4}";
echo $char; // Output: 떴
Ruby:
char = "\u{B5B4}"
puts char # Output: 떴
Rust:
let c = '\u{B5B4}';
println!("{}", c); // Output: 떴
Go:
char := '\uB5B4'
fmt.Printf("%c\n", char) // Output: 떴
CSS:
/* CSS content property */
.element::before {
content: "\00B5B4"; /* 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%96%B4
MD5:
d8f98fb477d12658672f07b33602e06b
SHA1:
c2e91953076cecdd3d60387e480bd38fb9061685
Base64:
65a0