C:
char c = '\uB527';
printf("%c\n", c); // Output: 딧
JavaScript:
const char = '\uB527';
console.log(char); // Output: 딧
Java:
char c = '\uB527';
System.out.println(c); // Output: 딧
JSON:
{"text": "\uB527"} // Value: 딧
Python:
char = '\uB527'
print(char) # Output: 딧
Perl:
my $char = "\x{B527}";
print $char; # Output: 딧
PHP:
$char = "\x{B527}";
echo $char; // Output: 딧
Ruby:
char = "\u{B527}"
puts char # Output: 딧
Rust:
let c = '\u{B527}';
println!("{}", c); // Output: 딧
Go:
char := '\uB527'
fmt.Printf("%c\n", char) // Output: 딧
CSS:
/* CSS content property */
.element::before {
content: "\00B527"; /* 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%94%A7
MD5:
7290ab0e0a2ed8d71f2c88a203a70b7d
SHA1:
4856a97b6e3dde1940c2d4938933ec6bbe9be9eb
Base64:
65Sn