C:
char c = '\uD630';
printf("%c\n", c); // Output: 혰
JavaScript:
const char = '\uD630';
console.log(char); // Output: 혰
Java:
char c = '\uD630';
System.out.println(c); // Output: 혰
JSON:
{"text": "\uD630"} // Value: 혰
Python:
char = '\uD630'
print(char) # Output: 혰
Perl:
my $char = "\x{D630}";
print $char; # Output: 혰
PHP:
$char = "\x{D630}";
echo $char; // Output: 혰
Ruby:
char = "\u{D630}"
puts char # Output: 혰
Rust:
let c = '\u{D630}';
println!("{}", c); // Output: 혰
Go:
char := '\uD630'
fmt.Printf("%c\n", char) // Output: 혰
CSS:
/* CSS content property */
.element::before {
content: "\00D630"; /* 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=%ED%98%B0
MD5:
624d214716fdd90bbde96b41fb5904d3
SHA1:
d43523ef4dfc04c17940fbe0ed23778da7475480
Base64:
7Ziw