C:
char c = '\uD122';
printf("%c\n", c); // Output: 턢
JavaScript:
const char = '\uD122';
console.log(char); // Output: 턢
Java:
char c = '\uD122';
System.out.println(c); // Output: 턢
JSON:
{"text": "\uD122"} // Value: 턢
Python:
char = '\uD122'
print(char) # Output: 턢
Perl:
my $char = "\x{D122}";
print $char; # Output: 턢
PHP:
$char = "\x{D122}";
echo $char; // Output: 턢
Ruby:
char = "\u{D122}"
puts char # Output: 턢
Rust:
let c = '\u{D122}';
println!("{}", c); // Output: 턢
Go:
char := '\uD122'
fmt.Printf("%c\n", char) // Output: 턢
CSS:
/* CSS content property */
.element::before {
content: "\00D122"; /* 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%A2
MD5:
3a9a86c63464c59370dc63cbbd374e71
SHA1:
1d3dbce3d024d0a62e3604c44d800e00b7fc240c
Base64:
7YSi