[Q&A]MacでWEBで見かける『あの』文字を入力したい
あの〜ぉ
ハートみたいな変な文字(母国語な人に失礼です...笑)を
BLOGとかにコピペしたらぁ〜
文字バケしちゃうんですぅ〜
だそうで
問題の文字はこれ『ღ』
こちらの記事
【[MorxTester]フォントの文字のGIDやUIDを確認する: [FORCE]】[LINK]に書いた
前に
後に;
を入れるんだよ
って説明したが
首かしげたままだったので
ダメな様子トホホ
じゃぁこれでやって
【[AppleScript]htmlentities変換【TextEdit版】: [FORCE]】[LINK]
って事で終わるんだろうけれども
?エラー?なんで?phpの制限?
面倒だったので
こんなんして終了
display dialog "1文字だけよ" default answer "" buttons {"変換", "Cancel"} with icon 1 default button 1 with title "文字をコピペ" cancel button "Cancel"
set MainText to text returned of the result as Unicode text
tell application "TextEdit"
---tell application "Jedit X"
launch
activate
make new document at end of documents
tell front document
set font of every word to "Arial Unicode"
set its text to (MainText) as text
set test to id of MainText
set TheTextToEncode to every paragraph
set theResult to my encodehexdump(TheTextToEncode)
set theResultHex to "&#x" & theResult & ";"
set every paragraph to theResultHex
---replaceAll string "(.*)" to "&#x\\1;" with select all, case sensitive, grep and entire word
end tell
end tell
on encodehexdump(str)
set scpt to " echo \"" & str & "\"| hexdump |awk '{printf $2 $3 $4}'"
return do shell script scpt
end encodehexdump
まぁねぇ
仕事用じゃぁないし...笑
| 固定リンク
「CharacterEntity」カテゴリの記事
- [AppleScripts]シングルクオトのエスケープ処理(phpを使う時のお約束)(2013.05.26)
- [AppleScript]ユニコードエスケープをデコードする【その2:pythonを使う】(2013.02.10)
- [AppleScript]ユニコードエスケープをデコードする【その1:phpを使う】(2013.02.10)
- [HTML5]Named character references(2011.01.21)
- これは便利だぁCharacterEntity取得ツール(2011.01.15)
この記事へのコメントは終了しました。
コメント