C:
char c = '\uB365';
printf("%c\n", c); // Output: 덥
JavaScript:
const char = '\uB365';
console.log(char); // Output: 덥
Java:
char c = '\uB365';
System.out.println(c); // Output: 덥
JSON:
{"text": "\uB365"} // Value: 덥
Python:
char = '\uB365'
print(char) # Output: 덥
Perl:
my $char = "\x{B365}";
print $char; # Output: 덥
PHP:
$char = "\x{B365}";
echo $char; // Output: 덥
Ruby:
char = "\u{B365}"
puts char # Output: 덥
Rust:
let c = '\u{B365}';
println!("{}", c); // Output: 덥
Go:
char := '\uB365'
fmt.Printf("%c\n", char) // Output: 덥
CSS:
/* CSS content property */
.element::before {
content: "\00B365"; /* 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%8D%A5
MD5:
1c293f07f2330646b6d1d65f62e12105
SHA1:
4b8cf3de21e885d6dbef63e51358540b976afeb4
Base64:
642l