C:
char c = '\uD085';
printf("%c\n", c); // Output: 킅
JavaScript:
const char = '\uD085';
console.log(char); // Output: 킅
Java:
char c = '\uD085';
System.out.println(c); // Output: 킅
JSON:
{"text": "\uD085"} // Value: 킅
Python:
char = '\uD085'
print(char) # Output: 킅
Perl:
my $char = "\x{D085}";
print $char; # Output: 킅
PHP:
$char = "\x{D085}";
echo $char; // Output: 킅
Ruby:
char = "\u{D085}"
puts char # Output: 킅
Rust:
let c = '\u{D085}';
println!("{}", c); // Output: 킅
Go:
char := '\uD085'
fmt.Printf("%c\n", char) // Output: 킅
CSS:
/* CSS content property */
.element::before {
content: "\00D085"; /* 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%82%85
MD5:
965cd102705074bb0b19865f7ca0ec43
SHA1:
df8d26be17d733a26ce446cdfbf3320e7f8add61
Base64:
7YKF