C:
char c = '\uB495';
printf("%c\n", c); // Output: 뒕
JavaScript:
const char = '\uB495';
console.log(char); // Output: 뒕
Java:
char c = '\uB495';
System.out.println(c); // Output: 뒕
JSON:
{"text": "\uB495"} // Value: 뒕
Python:
char = '\uB495'
print(char) # Output: 뒕
Perl:
my $char = "\x{B495}";
print $char; # Output: 뒕
PHP:
$char = "\x{B495}";
echo $char; // Output: 뒕
Ruby:
char = "\u{B495}"
puts char # Output: 뒕
Rust:
let c = '\u{B495}';
println!("{}", c); // Output: 뒕
Go:
char := '\uB495'
fmt.Printf("%c\n", char) // Output: 뒕
CSS:
/* CSS content property */
.element::before {
content: "\00B495"; /* 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=%EB%92%95
MD5:
ccd6b76b30449d2aeb44d1fc9aa90ac0
SHA1:
58d7d20f031fa10b58d0f9ed89dacabf26b27c5d
Base64:
65KV