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