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