C:
char c = '\uD107';
printf("%c\n", c); // Output: 턇
JavaScript:
const char = '\uD107';
console.log(char); // Output: 턇
Java:
char c = '\uD107';
System.out.println(c); // Output: 턇
JSON:
{"text": "\uD107"} // Value: 턇
Python:
char = '\uD107'
print(char) # Output: 턇
Perl:
my $char = "\x{D107}";
print $char; # Output: 턇
PHP:
$char = "\x{D107}";
echo $char; // Output: 턇
Ruby:
char = "\u{D107}"
puts char # Output: 턇
Rust:
let c = '\u{D107}';
println!("{}", c); // Output: 턇
Go:
char := '\uD107'
fmt.Printf("%c\n", char) // Output: 턇
CSS:
/* CSS content property */
.element::before {
content: "\00D107"; /* 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%84%87
MD5:
ec000edcefe6c26ce55c15110b96b95e
SHA1:
5cf2fab01cbcb5c45097fd4bfe485a48b6ad2e2a
Base64:
7YSH